warning function

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

Adds an warning message with optional properties.

Implementation

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