app_util.dart 348 B

123456789101112131415161718
  1. import 'package:flutter/foundation.dart';
  2. class AppUtil {
  3. // 关闭打印
  4. static void disableDebugPrint() {
  5. bool debug = false;
  6. assert(() {
  7. debug = true;
  8. return true;
  9. }());
  10. if (!debug) {
  11. debugPrint = (String message, {int wrapWidth}) {
  12. //disable log print when not in debug mode
  13. };
  14. }
  15. }
  16. }