dotsot 0.0.4
dotsot: ^0.0.4 copied to clipboard
Using this package you can easily log the Strings in to console. It helps to debug the code and increase the readability of the code.
example/main.dart
// example/main.dart
import 'package:dotsot/dotsot.dart';
void main() {
// Simple log using the extension
'App started'.log();
// Custom tag
'Fetching user data...'.log('NETWORK');
// Error message
'Something went wrong!'.log('ERROR');
}