error: The default 'List' is not available when null safety is enabled
how do i create an empty array with fixed length in Dart?
main(List<String> args) {
List<int> lista_int_fissa = new List<int>(3);//
lista_int_fissa[1] = 200;
print(lista_int_fissa);
}