BugReport constructor

BugReport({
  1. String? description = '',
  2. String? stepsToReproduce,
  3. String? userIdentifier,
  4. String? createdAt,
  5. String? updatedAt,
  6. List<Attachment>? attachments,
})

Implementation

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