Breadcrumb.console constructor

Breadcrumb.console({
  1. String? message,
  2. SentryLevel? level,
  3. DateTime? timestamp,
  4. 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,
  );
}