SimpleStorage<T> constructor Null safety

SimpleStorage<T>(
  1. String key
)

Implementation

SimpleStorage(String key)
    : key = '${key}_storage',
      storage = KeyValueStorage();