ckApiDebug function

void ckApiDebug(
  1. String message, {
  2. String? tag,
})

Global shortcut for CkLogger.apiDebug

Implementation

void ckApiDebug(String message, {String? tag}) {
  CkLogger.apiDebug(message, tag: tag);
}