red method

dynamic red(
  1. String text
)

Implementation

red(String text){
 AnsiPen red = AnsiPen()..red();
 print(red(text));
  }