EnumValuePair.fromJson constructor

EnumValuePair.fromJson(
  1. Map json_
)

Implementation

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