Breadcrumb.console constructor
Breadcrumb.console({
- String? message,
- SentryLevel? level,
- DateTime? timestamp,
- Map<
String, dynamic> ? data,
Implementation
factory Breadcrumb.console({
String? message,
SentryLevel? level,
DateTime? timestamp,
Map<String, dynamic>? data,
}) {
return Breadcrumb(
message: message,
level: level,
category: 'console',
type: 'debug',
timestamp: timestamp,
data: data,
);
}