notifyBluetoothDeviceFound method

void notifyBluetoothDeviceFound(
  1. MyBluetoothDevice device
)

Implementation

void notifyBluetoothDeviceFound(MyBluetoothDevice device) {
  for (final observer in _observers) {
    observer.notifyBluetoothDeviceFound(device);
  }
}