mobile_skt/lib/util/logger_util.dart

13 lines
269 B
Dart

import 'package:get/get.dart';
import 'package:sk_base_mobile/config.dart';
class LoggerUtil {
void error(dynamic msg) {
if (GloablConfig.DEBUG) printError(info: '$msg');
}
void info(dynamic msg) {
if (GloablConfig.DEBUG) printInfo(info: '$msg');
}
}