CustomBluetoothDevice.fromJson constructor
Implementation
factory CustomBluetoothDevice.fromJson(Map<String, dynamic> json) {
return CustomBluetoothDevice(
name: json['name'],
identifier: json['identifier'],
bondState: json['bondState']);
}