protoConfigStatic static method

ProtoMessageConfig protoConfigStatic()

Implementation

static ProtoMessageConfig protoConfigStatic() {
  return ProtoMessageConfig(
    syntax: ProtoSyntax.v3,
    options: const [],
    fields: [
      ProtoFieldConfig.repeated(
        fieldNumber: 1,
        elementType: ProtoFieldType.message,
        options: [ProtoOptionBool(name: "amino.dont_omitempty", value: true)],
      ),
      ProtoFieldConfig.repeated(
        fieldNumber: 2,
        elementType: ProtoFieldType.message,
        options: [ProtoOptionBool(name: "amino.dont_omitempty", value: true)],
      ),
    ],
  );
}