Storage.get constructor

Storage.get(
  1. String name, {
  2. bool autoNamespace = true,
  3. double? scale = 1,
  4. required String? key,
})

To get a value back, use Storage.get.

Implementation

Storage.get(
  this.name, {
  this.autoNamespace = true,
  this.scale = 1,
  required this.key,
})  : assert(key != null),
      _type = _StorageType.get;