1. @override
bool operator ==(bs)

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;
}