decodeAsInt64 function
Interprets rawVarint as a signed 64-bit integer.
This is an identity function — Dart ints are already 64-bit two's-complement — but it exists for symmetry with decodeAsInt32 and for documentation purposes at call sites.
Implementation
int decodeAsInt64(int rawVarint) {
return rawVarint;
}