AppliedLabelChange.fromJson constructor

AppliedLabelChange.fromJson(
  1. Map json_
)

Implementation

AppliedLabelChange.fromJson(core.Map json_)
    : this(
        changes: json_.containsKey('changes')
            ? (json_['changes'] as core.List)
                .map((value) => AppliedLabelChangeDetail.fromJson(
                    value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
      );