UploadedFile constructor
UploadedFile({})
Implementation
UploadedFile({
required this.filename,
required this.fieldName,
this.contentType,
String? tempFilePath,
List<int>? data,
}) : _tempFilePath = tempFilePath,
_memoryData = data;