writeStorageListNotNull static method

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

Implementation

static void writeStorageListNotNull(
  Map<String, dynamic> data,
  String key,
  List<StorageFile>? storageFiles, {
  bool isSetNull = true,
}) =>
    _writeStorageList(
      data,
      key,
      storageFiles,
      isNullIgnore: true,
      isSetNull: isSetNull,
    );