operator + method
Returns a new BinarySize whose bytesCount is the sum of this and
other's byte counts.
Implementation
BinarySize operator +(BinarySize other) => BinarySize()..bytesCount = bytesCount + other.bytesCount;
Returns a new BinarySize whose bytesCount is the sum of this and
other's byte counts.
BinarySize operator +(BinarySize other) => BinarySize()..bytesCount = bytesCount + other.bytesCount;