Answers for "instance member 'initialize' can't be accessed using static access"

0

the instance member cannot be accessed in an initializer

Use dynamic instead of type.
e.g.
List<Products> // type
List<dynamic> // dynamic
Posted by: Guest on July-03-2021

Code answers related to "instance member 'initialize' can't be accessed using static access"

Code answers related to "Dart"

Browse Popular Code Answers by Language