Advertisement
Nort432

Create a annotation

May 4th, 2022
965
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Dart 0.22 KB | None | 0 0
  1. class {
  2.   final String name;
  3.   final String todoUrl;
  4.  
  5.   const Todo(this.name, {this.todoUrl}) : assert(name != null);
  6. }
  7.  
  8. @Todo('hello first annotation', todoUrl: 'https://www.google.com')
  9. class HelloAnnotations {}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement