saveToLocalStorage method
Implementation
Future<void> saveToLocalStorage(BluetoothInfo bluetoothInfo) async {
SharedPreferences prefs = await SharedPreferences.getInstance();
await prefs.setString(
'printer-settings',
jsonEncode(
{'macAddress': bluetoothInfo.macAdress, 'name': bluetoothInfo.name},
),
);
}