log static method

void log(
  1. dynamic text
)

log the text with white color

Implementation

static void log(dynamic text) {
  print(text);
}