Files
adventofcode2025/lib/util.dart

7 lines
158 B
Dart
Raw Permalink Normal View History

2026-03-17 16:14:41 -05:00
import 'package:flutter/foundation.dart';
void debugLog(String? msg, {int? wrapWidth}) {
if (kDebugMode) {
debugPrint(msg, wrapWidth: wrapWidth);
}
}