storeConfigEntry method

Future<void> storeConfigEntry(
  1. String key,
  2. String value
)

Stores a configuration Entry.

Implementation

Future<void> storeConfigEntry(String key, String value) async {
  await _configBox!.put(key, value);
}