BugReport constructor

BugReport({
  1. String? id,
  2. String? description = '',
  3. String? stepsToReproduce,
  4. String? userIdentifier,
  5. String? createdAt,
  6. String? updatedAt,
  7. List<Attachment>? attachments,
  8. Device? device,
  9. App? app,
  10. AppVersion? appVersion,
})

Implementation

BugReport({
  this.id,
  this.description = '',
  this.stepsToReproduce,
  this.userIdentifier,
  this.createdAt,
  this.updatedAt,
  this.attachments,
  this.device,
  this.app,
  this.appVersion,
});