byteLength property
int
get
byteLength
The length of this message in bytes.
Implementation
int get byteLength {
return records.fold(0, (p, e) => p + e.byteLength);
}
The length of this message in bytes.
int get byteLength {
return records.fold(0, (p, e) => p + e.byteLength);
}