dart list check if index exists code example
Example: how to check whether index is exist or not in dart
List<int> numbers = [1, 2, 3, 4, 5,];
//Check if index 7 is valid
if (numbers.asMap().containsKey(7)) {
print('Exists');
} else {
print('Doesn\'t exist');
}