operator == method

  1. @override
bool operator ==(
  1. Object other
)
override

Override for equality check

Implementation

@override
bool operator ==(Object other) => identical(this, other) || other is BluetoothDevice && runtimeType == other.runtimeType && address == other.address;