CrashReportModel constructor

CrashReportModel({
  1. DiagnosticsNode? context,
  2. Object? exception,
  3. StackTrace? stackTrace,
  4. String? library,
  5. DateTime? createdAt,
  6. int? userId,
  7. String? description,
  8. String? url,
  9. CrashlitycsType? type,
  10. String? reason,
})

Implementation

CrashReportModel(
    {this.context,
    this.exception,
    this.stackTrace,
    this.library,
    this.createdAt,
    this.userId,
    this.description,
    this.url,
    this.type,
    this.reason});