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