GoogleAppsCloudidentityDevicesV1CustomAttributeValue.fromJson constructor

GoogleAppsCloudidentityDevicesV1CustomAttributeValue.fromJson(
  1. Map json_
)

Implementation

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