color_simp 1.0.3
color_simp: ^1.0.3 copied to clipboard
A simple Dart package that adds colorful console logging using ANSI escape codes.
example/color_simp_example.dart
import 'package:color_simp/color_simp.dart';
void main() {
"Its very easy on green".green.log();
"Its very easy on red also".red.log();
}