Files
cherrypick/cherrypick_annotations/lib/src/singleton.dart

29 lines
723 B
Dart
Raw Normal View History

2025-05-18 00:50:47 +03:00
/// An annotation to declare a class as a singleton.
///
/// This can be used to indicate that only one instance of the class
/// should be created, which is often useful in dependency injection
/// frameworks or service locators.
///
/// Example:
/// ```dart
/// @module()
/// abstract class AppModule extends Module {
/// @singleton()
/// Dio dio() => Dio();
/// }
/// ```
/// Сгенерирует код:
/// ```dart
/// final class $AppModule extends AppModule {
/// @override
/// void builder(Scope currentScope) {
/// bind<Dio>().toProvide(() => dio()).singleton();
/// }
/// }
/// ```
2025-05-17 00:34:56 +03:00
// ignore: camel_case_types
2025-05-18 00:50:47 +03:00
final class singleton {
/// Creates a [singleton] annotation.
2025-05-17 00:34:56 +03:00
const singleton();
}