customDebugPrint method

void customDebugPrint(
  1. Object? object
)

Implementation

void customDebugPrint(Object? object) {
  if (showLogs) {
    dev.log(object.toString(), name: "flutter_meedu_media_kit");
  }
}