mirror of
https://github.com/dz0ny/meshcore-sar.git
synced 2026-07-02 17:41:37 +00:00
baf49d27d8
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
9 lines
179 B
Dart
9 lines
179 B
Dart
import 'package:flutter/foundation.dart';
|
|
|
|
/// Debug print that only outputs in debug builds
|
|
void debugPrint(Object? message) {
|
|
if (kDebugMode) {
|
|
debugPrint(message);
|
|
}
|
|
}
|