GoogleCloudChannelV1ListCustomersResponse.fromJson constructor

GoogleCloudChannelV1ListCustomersResponse.fromJson(
  1. Map json_
)

Implementation

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