| dynamic get get => throw "hello"; | |
| dynamic get get { throw "hello"; } | |
| dynamic get get async => throw "hello"; | |
| dynamic get get async { throw "hello"; } | |
| dynamic get get async* => throw "hello"; | |
| dynamic get get async* { throw "hello"; } | |
| dynamic get get sync* => throw "hello"; | |
| dynamic get get sync* { throw "hello"; } |