RepeatedEnumAttributeValue.fromJson constructor

RepeatedEnumAttributeValue.fromJson(
  1. Map json_
)

Implementation

RepeatedEnumAttributeValue.fromJson(core.Map json_)
  : this(
      setValues:
          (json_['setValues'] as core.List?)
              ?.map((value) => value as core.String)
              .toList(),
      unsetValues:
          (json_['unsetValues'] as core.List?)
              ?.map((value) => value as core.String)
              .toList(),
    );