get static method

Future<Object?> get(
  1. String key, [
  2. String? appGroup
])

Returns the value associated with key or null if no value is associated with key.

Implementation

static Future<Object?> get(String key, [String? appGroup]) async {
  return _instance.get(key, appGroup);
}