FileInfo constructor

FileInfo(
  1. {File? file,
  2. Uint8List? fileBytes,
  3. String? fileUrl,
  4. String? fileName,
  5. String? mimeType,
  6. int? fileSize}
)

Implementation

FileInfo({
  this.file,
  this.fileBytes,
  this.fileUrl,
  this.fileName,
  this.mimeType,
  this.fileSize,
});