ListDeviceTierConfigsResponse.fromJson constructor

ListDeviceTierConfigsResponse.fromJson(
  1. Map json_
)

Implementation

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