ModifyLabelsRequest.fromJson constructor
      
      ModifyLabelsRequest.fromJson(
    
    
- Map json_
Implementation
ModifyLabelsRequest.fromJson(core.Map json_)
  : this(
      kind: json_['kind'] as core.String?,
      labelModifications:
          (json_['labelModifications'] as core.List?)
              ?.map(
                (value) => LabelModification.fromJson(
                  value as core.Map<core.String, core.dynamic>,
                ),
              )
              .toList(),
    );