CrashReportSummary constructor

CrashReportSummary({
  1. required String crashId,
  2. String? exceptionName,
  3. String? exceptionReason,
})

Implementation

CrashReportSummary({
  required this.crashId,
  this.exceptionName,
  this.exceptionReason,
});