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