log method

dynamic log(
  1. Object o
)

Implementation

log(Object o) {
  if (kDebugMode) {
    print(o);
  }
}