flutter_listview_loadmore icon indicating copy to clipboard operation
flutter_listview_loadmore copied to clipboard

My List contains Strings but not int.. then how can I list generate with String

Open ampleHub opened this issue 4 years ago • 0 comments

List<GetQuestions> userQuestions = [];

void load() { print("load"); setState(() { questions.addAll(List.generate(20, (v) => v)); print("data count = $questions.length}"); }); }

ampleHub avatar Apr 26 '20 19:04 ampleHub