singleton_macro 0.0.1-dev.1 singleton_macro: ^0.0.1-dev.1 copied to clipboard
A Dart package that provides a `Singleton` macro to transform classes into singletons automatically. This package leverages Dart's macro system to enforce the singleton pattern on the annotated classes.
Use this package as a library
Depend on it
Run this command:
With Dart:
$ dart pub add singleton_macro
This will add a line like this to your package's pubspec.yaml (and run an implicit dart pub get
):
dependencies:
singleton_macro: ^0.0.1-dev.1
Alternatively, your editor might support dart pub get
. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:singleton_macro/singleton_macro.dart';