declaring list in dart code example
Example 1: declaring and initializing a list in dart
import 'dart:core';
void main() {
//List of integers
List<int> intArr = [1,2,3,4,5];
print(intArr);
//List of strings
List<String> strArr = ['hello', 'world'];
print(strArr);
}
Example 2: how to find the length a list in dart
list.length //to check a length of list