GoogleAppsDriveLabelsV2DeltaUpdateLabelResponse.fromJson constructor
GoogleAppsDriveLabelsV2DeltaUpdateLabelResponse.fromJson(
- Map json_
Implementation
GoogleAppsDriveLabelsV2DeltaUpdateLabelResponse.fromJson(core.Map json_)
: this(
responses: (json_['responses'] as core.List?)
?.map((value) =>
GoogleAppsDriveLabelsV2DeltaUpdateLabelResponseResponse
.fromJson(value as core.Map<core.String, core.dynamic>))
.toList(),
updatedLabel: json_.containsKey('updatedLabel')
? GoogleAppsDriveLabelsV2Label.fromJson(
json_['updatedLabel'] as core.Map<core.String, core.dynamic>)
: null,
);