This package provides utility functions for the application.
- Common utility functions
- Logging functionality
- Package information retrieval
To use this package, add utils
as a dependency in your pubspec.yaml
file.
dependencies:
utils:
path: ../utils/
Here is an example of how to use this package.
import 'package:utils/utils.dart';
void main() {
// Example of using the logging functionality
logger.info('This is an info message');
}