writeStorage static method

void writeStorage(
  1. Map<String, dynamic> data,
  2. String key,
  3. StorageFile? storageFile, {
  4. bool isSetNull = true,
})

Implementation

static void writeStorage(
  Map<String, dynamic> data,
  String key,
  StorageFile? storageFile, {
  bool isSetNull = true,
}) =>
    _writeStorage(
      data,
      key,
      storageFile,
      isNullIgnore: false,
      isSetNull: isSetNull,
    );