remove_print_cli 1.1.0+2
remove_print_cli: ^1.1.0+2 copied to clipboard
A command-line tool to remove or modify print statements in Dart/Flutter projects for better code quality and maintenance.
example/example.dart
import 'dart:io';
void main() {
print("This is a debug message"); // Should be removed by remove_print_cli
stdout.writeln("Regular console output"); // Should remain
stderr.writeln("Error message"); // Should remain
}