setInt static method

Future<void> setInt(
  1. String key,
  2. int? value
)

Implementation

static Future<void> setInt(String key, int? value) async {
  await _cacheApi.setInt(key, value);
}