aInt64 method

void aInt64(
  1. int tagNumber,
  2. String name, {
  3. String? protoName,
})

Adds Int64 field with Int64.ZERO default.

Implementation

void aInt64(int tagNumber, String name, {String? protoName}) {
  add<Int64>(
    tagNumber,
    name,
    PbFieldType.O6,
    Int64.ZERO,
    null,
    null,
    null,
    protoName: protoName,
  );
}