ckDebug function

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

Global shortcut for CkLogger.debug

Implementation

void ckDebug(String message, {String? tag}) {
  CkLogger.debug(message, tag: tag);
}