dart, keeping type checking on but letting proxys through? -
im passing proxy object in method expects specific argument type, proxy object isn't instance of expected type through it's nosuchmethod support functionality of expected concrete type, want keep argument type specification static type checking whilst i'm coding, keep type checking on whilst i'm debugging code, thought wouldn't throw type exceptions when class causes error proxy object? there anyway type checking on?
you implement argument type.
@proxy class myproxy implements myargumenttype { ... }
Comments
Post a Comment