LabelProperties.fromJson constructor

LabelProperties.fromJson(
  1. Map json_
)

Implementation

LabelProperties.fromJson(core.Map json_)
  : this(
      eventLabels: (json_['eventLabels'] as core.List?)
          ?.map(
            (value) => EventLabel.fromJson(
              value as core.Map<core.String, core.dynamic>,
            ),
          )
          .toList(),
    );