printSuccess function

void printSuccess(
  1. Object? text
)

Implementation

void printSuccess(Object? text) {
  /// Print Success with format
  print("${colorText("green")}[SUCCESS]: $text${colorText()}");
}