CrashEntry constructor
CrashEntry({})
Creates a crash entry. timestamp defaults to now if not supplied.
Implementation
CrashEntry({
required this.message,
required this.stackTrace,
this.isFatal = false,
DateTime? timestamp,
}) : timestamp = timestamp ?? DateTime.now();