ApigatewayListLocationsResponse.fromJson constructor

ApigatewayListLocationsResponse.fromJson(
  1. Map json_
)

Implementation

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