Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

function as parameter with generic object return type in dart

I have a function defined as

final Function<Future<PageableModel<T>>>(String?) elementBuilder;

The compiler shows a compile error at "Future": Expected to find '>'.
Is it possible in Dart to define a generic object as the return type of a function defined as variable.

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

>Solution :

That is not valid syntax. You probably meant:

final Future<PageableModel<T>> Function(String?) elementBuilder;
Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading