EnumValueDescriptorProto constructor
EnumValueDescriptorProto({
- String? name,
- int? number,
- EnumValueOptions? options,
Implementation
factory EnumValueDescriptorProto({
$core.String? name,
$core.int? number,
EnumValueOptions? options,
}) {
final result = create();
if (name != null) result.name = name;
if (number != null) result.number = number;
if (options != null) result.options = options;
return result;
}