ListSupportedServicesResponse.fromJson constructor
ListSupportedServicesResponse.fromJson(
- Map json_
Implementation
ListSupportedServicesResponse.fromJson(core.Map json_)
: this(
nextPageToken: json_['nextPageToken'] as core.String?,
supportedServices: (json_['supportedServices'] as core.List?)
?.map((value) => SupportedService.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList(),
);