lists in null safety issue

Issue i’m getting a null safety issue about with a list from models The default ‘List’ constructor isn’t available when null safety is enabled.Try using a list literal, ‘List.filled’ or ‘List.generate’. this is the code: var productList = List<Product>().obs; modal

Continue reading