BleDevice constructor
BleDevice({})
Implementation
BleDevice({
required this.deviceId,
required String? name,
this.rssi,
this.paired,
this.services = const [],
this.isSystemDevice,
this.manufacturerDataList = const [],
}) {
rawName = name;
this.name = name?.replaceAll(RegExp(r'[^ -~]'), '').trim();
}