Skip to content

Instantly share code, notes, and snippets.

@zolotyh
Created August 3, 2019 14:41
Show Gist options
  • Save zolotyh/05e00150832fbe1e51af8d15b7c560fd to your computer and use it in GitHub Desktop.
Save zolotyh/05e00150832fbe1e51af8d15b7c560fd to your computer and use it in GitHub Desktop.
void main(){
print((new TestClass() as dynamic).test());
}
class TestClass {
@override
noSuchMethod(Invocation invocation){
print(1231231);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment