import 'package:flutter/foundation.dart'; void debugLog(String? msg, {int? wrapWidth}) { if (kDebugMode) { debugPrint(msg, wrapWidth: wrapWidth); } }