copyWith method

StorageOptions copyWith({
  1. Optional<String?>? downloadStoragePath,
})

Implementation

StorageOptions copyWith({
  Optional<String?>? downloadStoragePath
}) {
  return StorageOptions(
    downloadStoragePath != null ? downloadStoragePath.value : this.downloadStoragePath
  );
}