storeValue static method

dynamic storeValue({
  1. required String key,
  2. required String value,
})

Implementation

static storeValue({required String key, required String value}) async {
  await storage.write(key: key, value: value);
}