getSharedPreferencesInteger static method

Future<int> getSharedPreferencesInteger(
  1. String key
)

Implementation

static Future<int> getSharedPreferencesInteger(String key) async {
  return await _channel.invokeMethod('getSharedPreferencesInteger', {'key':key});
}