dotsot 0.0.5 copy "dotsot: ^0.0.5" to clipboard
dotsot: ^0.0.5 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'.dotsot();

  // Custom tag
  'Fetching user data...'.dotsot('NETWORK');

  // Error message
  'Something went wrong!'.dotsot('ERROR');

  /// Using Variable
  final variableName = "This is a variable";
  variableName.dotsot();
}
1
likes
150
points
43
downloads

Documentation

API reference

Publisher

verified publisheraarifhusain.com

Weekly Downloads

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.

Repository (GitHub)
View/report issues

License

MIT (license)

Dependencies

flutter

More

Packages that depend on dotsot