debug static method

dynamic debug(
  1. dynamic _
)

Implementation

static debug(_) {
  if ([FlConstant.LOGGEER_LEVEL_DEBUG].contains(FlUtils.getFlProperties().loggerProperties.level)) {
    print(_);
  }
}