setInt method

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

Implementation

Future<bool> setInt(String key, int value) async {
  return await FlutterLightweightStorePlatform.setInt(module, key: key, value: value);
}