The following doesn’t serialize correctly in dart:
public class TestResponse : List<TestData>
{}
public class TestData {
// stuff
}
public class TestRequest: IReturn<TestResponse> {}
Dart will throw the following error:
Unhandled Exception: type ‘_InternalLinkedHashMap<String, dynamic>’ is not a subtype of type ‘SearchByTickerResponseData’ of ‘element’
If I replace the wrapper class with the list it works fine.