yellow method

dynamic yellow(
  1. String text
)

Implementation

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