UploadedFile constructor

UploadedFile({
  1. required String filename,
  2. required String fieldName,
  3. String? contentType,
  4. String? tempFilePath,
  5. List<int>? data,
})

Implementation

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