log function

dynamic log(
  1. String str
)

Implementation

log(String str) {
  if (kDebugMode) {
    print("$str");
  }
}