Flutter Stay of Strings

//List of integers
List<int> intArr = [1,2,3,4,5];
print(intArr);
  
//List of strings
List<String> strArr = ['hello', 'world'];
print(strArr);  
  
// When use as Paramitter Default Value
List<String> strArr = const ['hello', 'world'];
Shibaji Debnath