BluetoothConnectionState.fromMap constructor
BluetoothConnectionState.fromMap(
- dynamic map
Implementation
factory BluetoothConnectionState.fromMap(dynamic map) {
return BluetoothConnectionState(
isConnected: map['isConnected'],
deviceAddress: map['deviceAddress'],
status: map['status'],
);
}