printLog function

void printLog(
  1. Object? message, {
  2. String prefix = Config.logPrefix,
})

Implementation

void printLog(Object? message, {String prefix = Config.logPrefix}) {
  debugPrint('$prefix ${message ?? ''}');
}