remove static method

Future<void> remove(
  1. String key,
  2. String appGroup
)

Removes the value associated with key from the user defaults

Implementation

static Future<void> remove(String key, String appGroup) async {
  return _instance.remove(key, appGroup);
}