Skip to content

Latest commit

 

History

History

utils

Utils

This package provides utility functions for the application.

Features

  • Common utility functions
  • Logging functionality
  • Package information retrieval

Getting started

To use this package, add utils as a dependency in your pubspec.yaml file.

dependencies:
  utils:
    path: ../utils/

Usage

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');
}