notice function

void notice({
  1. required String message,
  2. AnnotationProperties? properties,
})

Adds a notice issue message with optional properties.

Implementation

void notice({required String message, AnnotationProperties? properties}) {
  issueCommand('notice', toCommandProperties(properties), message);
}