mirror of
https://github.com/vleeuwenmenno/supplements.git
synced 2025-09-11 18:29:12 +02:00
8 lines
233 B
Dart
8 lines
233 B
Dart
// A simple logging function that prints a message to the console if [kDebugMode] is enabled.
|
|
import 'package:flutter/foundation.dart';
|
|
|
|
void printLog(String message) {
|
|
if (kDebugMode) {
|
|
print('SupplementsLog: $message');
|
|
}
|
|
} |