success static method

void success(
  1. dynamic msg
)

Prints success to the console with a ✓ followed by the message in green

Implementation

static void success(dynamic msg) {
  // ignore: avoid_print
  print('${_penSuccess('✓ $msg')}');
}