UploadResponse constructor

UploadResponse({
  1. required String path,
  2. required String publicUrl,
  3. required int size,
  4. required String type,
})

Implementation

UploadResponse({
  required this.path,
  required this.publicUrl,
  required this.size,
  required this.type,
});