drop static method

FutureOr<void> drop(
  1. Breadcrumb breadcrumb
)

Drops a breadcrumb with information about state, a change of state, an event such as the user interacting with a widget, or navigating from one place to another or any custom data.

Breadcrumbs are events gathered by Rollbar's Telemetry which can help you understand the events leading up to an occurrence such as an error, exception or crash.

Implementation

static FutureOr<void> drop(Breadcrumb breadcrumb) async {
  await current._sandbox.dispatch(TelemetryEvent(breadcrumb));
}