printSuccess static method

void printSuccess(
  1. String message
)

Print success message with green color

Implementation

static void printSuccess(String message) {
  printColored('✓ $message', color: 'green');
}