box method

void box(
  1. String message, {
  2. bool newParagraph = false,
  3. LogLevel level = cli.LogLevel.info,
})

//////////////////// Box Messages Guidelines

Displays a box around the message.

Implementation

// Special output formats

/// **Box Messages Guidelines**
///
/// Displays a box around the message.
void box(
  String message, {
  bool newParagraph = false,
  cli.LogLevel level = cli.LogLevel.info,
}) {
  _logger.log(
    message,
    level,
    type: const cli.BoxLogType(newParagraph: true),
    newParagraph: newParagraph,
  );
}