TaskTransfer constructor

TaskTransfer({
  1. required String taskId,
  2. required String type,
  3. required String url,
  4. required String path,
  5. Map<String, String> headers = const {},
  6. Map<String, String> fields = const {},
  7. required String createdAt,
  8. required double progress,
  9. required String status,
})

Implementation

TaskTransfer({
  required this.taskId,
  required this.type,
  required this.url,
  required this.path,
  this.headers = const {},
  this.fields = const {},
  required this.createdAt,
  required this.progress,
  required this.status,
});