FileInfo.fromFileUrl constructor

FileInfo.fromFileUrl(
  1. {required String? fileUrl,
  2. String? fileName,
  3. String? mimeType,
  4. int? fileSize}
)

fromFileUrl

Implementation

FileInfo.fromFileUrl({
  required this.fileUrl,
  this.fileName,
  this.mimeType,
  this.fileSize,
})  : file = null,
      fileBytes = null;