debug method

  1. @override
void debug(
  1. String message, {
  2. Object? error,
  3. StackTrace? stackTrace,
})
override

Logs a verbose diagnostic debug message.

Forwards the message payload along with optional caught error contexts and execution stackTrace maps directly to the underlying engine.

Implementation

@override
void debug(String message, {Object? error, StackTrace? stackTrace}) {
  developer.log(
    message,
    name: 'DEBUG',
    error: error,
    stackTrace: stackTrace,
  );
}