GoogleCloudChannelV1Value.fromJson constructor

GoogleCloudChannelV1Value.fromJson(
  1. Map json_
)

Implementation

GoogleCloudChannelV1Value.fromJson(core.Map json_)
    : this(
        boolValue: json_.containsKey('boolValue')
            ? json_['boolValue'] as core.bool
            : null,
        doubleValue: json_.containsKey('doubleValue')
            ? (json_['doubleValue'] as core.num).toDouble()
            : null,
        int64Value: json_.containsKey('int64Value')
            ? json_['int64Value'] as core.String
            : null,
        protoValue: json_.containsKey('protoValue')
            ? json_['protoValue'] as core.Map<core.String, core.dynamic>
            : null,
        stringValue: json_.containsKey('stringValue')
            ? json_['stringValue'] as core.String
            : null,
      );