debug method
Debug Messages Guidelines
Should contain information that could be helpful when debugging user issues. These messages are not intended to be shown to the user.
Implementation
void debug(
final String message, {
final cli.LogType type = cli.TextLogType.normal,
final bool newParagraph = false,
}) {
_logger.debug(
message,
type: type,
newParagraph: newParagraph,
);
}