EnumValuePair.fromJson constructor

EnumValuePair.fromJson(
  1. Map json_
)

Implementation

EnumValuePair.fromJson(core.Map json_)
    : this(
        integerValue: json_.containsKey('integerValue')
            ? json_['integerValue'] as core.int
            : null,
        stringValue: json_.containsKey('stringValue')
            ? json_['stringValue'] as core.String
            : null,
      );