BluetoothDevice.fromMap constructor

BluetoothDevice.fromMap(
  1. Map map
)

Implementation

factory BluetoothDevice.fromMap(Map map) {
  return BluetoothDevice(
    map['name'],
    map['address'],
    type: map['type'],
  );
}