info method

void info(
  1. String message, {
  2. bool newParagraph = false,
})

Information Messages Guidelines

Used for messages to the user when the message does not fit into success, error or warning types. Can be used for general information.

Tone: Neutral and informative.

Format:

<Informational message>

Example:

The current project is set to my-project.

Implementation

void info(
  final String message, {
  final bool newParagraph = false,
}) {
  _logger.info(
    message,
    type: cli.TextLogType.normal,
    newParagraph: newParagraph,
  );
}