ethanblake4/dart_eval

Add support for functions that returns List<UserModel>

leefordjudes opened this issue · 0 comments

functions which returns single object is works well,
but functions which returns collection of objects not worked.

kindly add support for this.

This type of functions not supported.
List buildSummary(List items) {
List reults = [];
.... for ( .... ) {
...
...}
return results;
}