saveInt abstract method

Future<void> saveInt({
  1. required String key,
  2. required int value,
})

Saves the given integer value to the storage with key

Implementation

Future<void> saveInt({required String key, required int value});