ListDeviceTierConfigsResponse.fromJson constructor

ListDeviceTierConfigsResponse.fromJson(
  1. Map json_
)

Implementation

ListDeviceTierConfigsResponse.fromJson(core.Map json_)
    : this(
        deviceTierConfigs: json_.containsKey('deviceTierConfigs')
            ? (json_['deviceTierConfigs'] as core.List)
                .map((value) => DeviceTierConfig.fromJson(
                    value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
        nextPageToken: json_.containsKey('nextPageToken')
            ? json_['nextPageToken'] as core.String
            : null,
      );