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