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