success method Null safety

void success(
  1. String m
)

It prints the message with a Success status

Args: message (String): The Message to print to the console

Implementation

static void success(String m) {
  _logger.i(m);
}