clearNamespace method

Future<void> clearNamespace()
inherited

Clears all values in SharedPreferences that have keys starting with the namespace.

Implementation

Future<void> clearNamespace() async {
  await SharedPreferencesWrapper.removeWhereKeyStartsWith('$namespace.');
}