How to create a list fixed length in State? I need it's length with some cases
Hi @manhDat0301 馃憢
You can make use of List.generate(length, (index) => Model());
List.generate(length, (index) => Model());
Thanks a lot! 馃憤
Most helpful comment
Hi @manhDat0301 馃憢
You can make use of
List.generate(length, (index) => Model());