'Error message: The default 'List' constructor isn't available when null safety is enabled [duplicate]
Solution 1:[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.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Yeasin Sheikh |

