ModifyLabelsResponse.fromJson constructor

ModifyLabelsResponse.fromJson(
  1. Map json_
)

Implementation

ModifyLabelsResponse.fromJson(core.Map json_)
  : this(
      kind: json_['kind'] as core.String?,
      modifiedLabels:
          (json_['modifiedLabels'] as core.List?)
              ?.map(
                (value) => Label.fromJson(
                  value as core.Map<core.String, core.dynamic>,
                ),
              )
              .toList(),
    );