FileInfo constructor

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

Implementation

FileInfo(
    {this.name,
    this.url,
    this.mimeType,
    this.fileSize,
    this.file,
    this.fileBytes});