- @override
Returns if current ByteSize instance is equal to another.
Source
@override bool operator ==(dynamic bs) { if (bs is ByteSize) return Bits == bs.Bits; return false; }
Returns if current ByteSize instance is equal to another.
@override bool operator ==(dynamic bs) { if (bs is ByteSize) return Bits == bs.Bits; return false; }