protoConfigStatic static method
ProtoMessageConfig
protoConfigStatic()
Implementation
static ProtoMessageConfig protoConfigStatic() {
return ProtoMessageConfig(
syntax: ProtoSyntax.v2,
options: const [],
fields: [
ProtoFieldConfig.message(34, hasOptionalFlags: true),
ProtoFieldConfig.bool(
33,
options: [ProtoOptionBool(name: "default", value: false)],
hasOptionalFlags: true,
),
ProtoFieldConfig.repeated(
fieldNumber: 999,
elementType: ProtoFieldType.message,
),
],
);
}