contains static method

bool contains(
  1. String key
)

CHECK EXISTS

Implementation

static bool contains(String key) {
  return _prefs?.containsKey(key) ?? false;
}