Closed slodko closed 8 years ago
let me check. In the mean time could you test using dartVM in no checked mode?
When checked mode is turned off everything works ok.
If I'm not wrong this error is caused by reflectable library. This is because the getter DeclarationMirror.metadata
returns List<Obje>
instead List<InstanceMirror>
. If you see their source code:
List<Object> get metadata; // TYARG: InstanceMirror
you see something about that, however I don't understand completely why need to do this.
I'm going to close this issue, thanks for submitting it, and please let me know of any new issue or any new request.
I've got exception when deserializing simple json:
The argument of
GetValueOfAnnotation._fromAnnotations()
should probably beList<Object>
notList<InstanceMirror>
.