log static method

dynamic log(
  1. Object? object
)

Implementation

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