feat: implement generator for named annotation

This commit is contained in:
Sergey Penkovsky
2025-05-17 14:31:52 +03:00
parent 3d071626e5
commit ea6eb536dd
3 changed files with 35 additions and 10 deletions

View File

@@ -7,5 +7,6 @@ export 'src/module.dart';
export 'src/bind.dart';
export 'src/provide.dart';
export 'src/singleton.dart';
export 'src/named.dart';
// TODO: Export any libraries intended for clients of this package.

View File

@@ -0,0 +1,5 @@
// ignore: camel_case_types
class named {
final String value;
const named(this.value);
}