log static method

dynamic log(
  1. String log
)

Implementation

static log(String log) {
  assert(() {
    if (isDebugLogEnable) {
      if (kDebugMode) {
        print('[$CcBubblePainter] $log');
      }
    }
    return true;
  }());
}