PlayUploadEvent constructor

const PlayUploadEvent({
  1. required int schema,
  2. required DocumentKind kind,
  3. required UploadEvent event,
  4. UploadState? state,
  5. int? bytesSent,
  6. int? bytesTotal,
  7. PlayUploadResult? result,
})

Implementation

const PlayUploadEvent({
  required this.schema,
  required this.kind,
  required this.event,
  this.state,
  this.bytesSent,
  this.bytesTotal,
  this.result,
});