log static method

void log(
  1. String log
)

Implementation

static void log(String log) {
  if (mIsDebuggable) {
    debugPrint("TalkPlus: $log");
  }
}