BluetoothDevice.fromMap constructor
- Map map
Implementation
factory BluetoothDevice.fromMap(Map<dynamic, dynamic> map) {
return BluetoothDevice(
address: map['address'] as String,
name: map['name'] as String,
type: map['type'] as int,
);
}