MmUploadSession constructor

MmUploadSession({
  1. String? id,
  2. MmUploadSessionTypeEnum? type,
  3. int? createAt,
  4. String? userId,
  5. String? channelId,
  6. String? filename,
  7. int? fileSize,
  8. int? fileOffset,
})

Returns a new MmUploadSession instance.

Implementation

MmUploadSession({
  this.id,
  this.type,
  this.createAt,
  this.userId,
  this.channelId,
  this.filename,
  this.fileSize,
  this.fileOffset,
});