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