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

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