save static method

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

Implementation

static Future<void> save(
  String key,
  dynamic value,
) async {
  await LocalStorageService.cache
      .put(key, value);
}