l 3.1.0 
l: ^3.1.0 copied to clipboard
Cross-platform html/io Logger library with simple API. Manipulate with native and web console. Support ascii colorize output.
example/main.dart
library l.example.key_features;
import 'package:l/l.dart';
void main() {
  l
    ..v('Regular 1')
    ..e('Error')
    ..w('Warning')
    ..i('Info')
    ..d('Debug')
    ..s('Shout')
    ..vvvvvv('Regular 6');
}