commitPreferences method

Future<bool> commitPreferences(
  1. String prefs
)

Implementation

Future<bool> commitPreferences(String prefs) async {
  dataPushedDisk += prefs.length;
  await _prefsCapBox.put(0, prefs);
  print('[DB] prefs commit DONE');
  return true;
}