StorageProvider constructor

StorageProvider({
  1. File? file,
  2. String? path,
  3. List<File>? files,
  4. dynamic onProgressUpdate(
    1. double
    )?,
})

Implementation

StorageProvider({
  this.file,
  this.path,
  this.files,
  this.onProgressUpdate,
});