log static method

dynamic log(
  1. Object? msg
)

Implementation

static log(Object? msg) {
  if (kDebugMode) {
    print(msg);
  }
}