writeStorageNotNull static method

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

Implementation

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