log function

dynamic log(
  1. String log
)

Implementation

log(String log) {
  if (enableLog) {
    debugPrint("ChatCallKit: $log");
  }
}