LabelIds.fromJson constructor

LabelIds.fromJson(
  1. Map json_
)

Implementation

LabelIds.fromJson(core.Map json_)
    : this(
        labelIds: json_.containsKey('labelIds')
            ? (json_['labelIds'] as core.List)
                .map((value) => value as core.String)
                .toList()
            : null,
      );