protoConfigStatic static method
ProtoMessageConfig
protoConfigStatic()
Implementation
static ProtoMessageConfig protoConfigStatic() {
return ProtoMessageConfig(
syntax: ProtoSyntax.v3,
options: const [],
fields: [
ProtoFieldConfig.string(1, options: const []),
ProtoFieldConfig.string(
2,
options: [ProtoOptionBool(name: "amino.dont_omitempty", value: true)],
),
],
);
}