BugReport.create constructor
BugReport.create({})
Implementation
BugReport.create({
required this.description,
required this.stepsToReproduce,
this.userIdentifier = 'No user id provided',
}) : assert(description != null),
assert(stepsToReproduce != null),
assert(userIdentifier != null);