printWarning function

void printWarning(
  1. Object? text
)

Implementation

void printWarning(Object? text) {
  /// Print Warning with format
  print("${colorText("yellow")}[WARNING]: $text${colorText()}");
}