setValue method

Future<void> setValue(
  1. T newValue
)
inherited

Implementation

Future<void> setValue(T newValue) async {
  basic_settingsLogger.fine(() => 'Setting $key => $newValue');
  return _box.put(key, store(newValue));
}