Upload constructor

Upload({
  1. String? accountId,
  2. String? customDataSourceId,
  3. List<String>? errors,
  4. String? id,
  5. String? kind,
  6. String? status,
  7. DateTime? uploadTime,
})

Implementation

Upload({
  this.accountId,
  this.customDataSourceId,
  this.errors,
  this.id,
  this.kind,
  this.status,
  this.uploadTime,
});