removeSharedPrefs static method

Future<bool> removeSharedPrefs(
  1. String key
)

Implementation

static Future<bool> removeSharedPrefs(String key) =>
    SharedPreferencesUtil.instance
        .remove(isWeb || isWindows ? _checkPrefix(key) : key);