debug method
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,
);
}