printYellow function

dynamic printYellow(
  1. String msg
)

输出黄色提示

Implementation

printYellow(String msg) {
  print("$console_yellow$msg$console_default");
}