ListSupportedPermissionsResponse.fromJson constructor
ListSupportedPermissionsResponse.fromJson(
- Map json_
Implementation
ListSupportedPermissionsResponse.fromJson(core.Map json_)
: this(
nextPageToken: json_['nextPageToken'] as core.String?,
supportedPermissions: (json_['supportedPermissions'] as core.List?)
?.map((value) => value as core.String)
.toList(),
);