operator == method

  • @override

bool operator == (Object other)

override

Implementation

@override
bool operator ==(Object other) {
  if (other is Bits) {
    return $value == other.$value;
  }
  return false;
}