BluetoothDevice.fromMap constructor

BluetoothDevice.fromMap(
  1. 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,
  );
}