debug_print 0.0.1+1
debug_print: ^0.0.1+1 copied to clipboard
A simple debug print for Dart
DebugPrint #
DebugPrint is a simple tool that provides two static methods for printing messages:
- print(): A regular print function.
- debugPrint(): A debug print function that only runs if the application is in developer mode.
This allows you to use debugPrint()
in development without affecting the production environment.