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