showError static method

void showError(
  1. String message
)

Show error message

Implementation

static void showError(String message) {
  stderr.writeln('Error: $message');
}