GoogleAppsCloudidentityDevicesV1CustomAttributeValue.fromJson constructor

GoogleAppsCloudidentityDevicesV1CustomAttributeValue.fromJson(
  1. Map json_
)

Implementation

GoogleAppsCloudidentityDevicesV1CustomAttributeValue.fromJson(core.Map json_)
    : this(
        boolValue: json_.containsKey('boolValue')
            ? json_['boolValue'] as core.bool
            : null,
        numberValue: json_.containsKey('numberValue')
            ? (json_['numberValue'] as core.num).toDouble()
            : null,
        stringValue: json_.containsKey('stringValue')
            ? json_['stringValue'] as core.String
            : null,
      );