0

Can help me. Error message is The default 'List' constructor isn't available when null safety is enabled. Try using a list literal, 'List.filled' or 'List.generate'.

enter image description here

John Reaper
  • 269
  • 3
  • 15

1 Answers1

-1

You can create a new empty list like

 List<TextEditingController> _controllers = [];

List() constructor cannot be used in null-safe code. Use List.filled to create a non-empty list. This requires a fill value to initialize the list elements with. To create an empty list, use [] for a growable list or List.empty for a fixed length list (or where growability is determined at run-time).

More about list class.

Md. Yeasin Sheikh
  • 54,221
  • 7
  • 29
  • 56