Proto2EnumValueDescriptorProto.fromJson constructor
Proto2EnumValueDescriptorProto.fromJson(
- Map json_
Implementation
Proto2EnumValueDescriptorProto.fromJson(core.Map json_)
: this(
name: json_.containsKey('name') ? json_['name'] as core.String : null,
number:
json_.containsKey('number') ? json_['number'] as core.int : null,
);