copyWithBreadcrumb method
Implementation
@internal
NoticeRecord copyWithBreadcrumb(String breadcrumb) {
return NoticeRecord(
level: level,
message: message,
error: error,
stackTrace: stackTrace,
timestamp: timestamp,
// append breadcrumb to the front of the list
breadcrumbs: breadcrumbs.insert(0, breadcrumb),
);
}