mirror of
https://github.com/pese-git/cherrypick.git
synced 2026-01-23 21:13:35 +00:00
feat: implement generator for named annotation
This commit is contained in:
@@ -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.
|
||||
|
||||
5
cherrypick_annotations/lib/src/named.dart
Normal file
5
cherrypick_annotations/lib/src/named.dart
Normal file
@@ -0,0 +1,5 @@
|
||||
// ignore: camel_case_types
|
||||
class named {
|
||||
final String value;
|
||||
const named(this.value);
|
||||
}
|
||||
Reference in New Issue
Block a user