success static method
void
success(
- 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')}');
}