GoogleCloudChannelV1ReportValue.fromJson constructor

GoogleCloudChannelV1ReportValue.fromJson(
  1. Map json_
)

Implementation

GoogleCloudChannelV1ReportValue.fromJson(core.Map json_)
    : this(
        dateTimeValue: json_.containsKey('dateTimeValue')
            ? GoogleTypeDateTime.fromJson(
                json_['dateTimeValue'] as core.Map<core.String, core.dynamic>)
            : null,
        dateValue: json_.containsKey('dateValue')
            ? GoogleTypeDate.fromJson(
                json_['dateValue'] as core.Map<core.String, core.dynamic>)
            : null,
        decimalValue: json_.containsKey('decimalValue')
            ? GoogleTypeDecimal.fromJson(
                json_['decimalValue'] as core.Map<core.String, core.dynamic>)
            : null,
        intValue: json_.containsKey('intValue')
            ? json_['intValue'] as core.String
            : null,
        moneyValue: json_.containsKey('moneyValue')
            ? GoogleTypeMoney.fromJson(
                json_['moneyValue'] as core.Map<core.String, core.dynamic>)
            : null,
        stringValue: json_.containsKey('stringValue')
            ? json_['stringValue'] as core.String
            : null,
      );