xxxxxxxxxx
Replace item in a final list in dart
// In Dart, a final list means that the reference to the list cannot be changed
// after it's assigned. However, the content of the list can still be modified.
final List<String> myStrings = ['apple', 'banana', 'cherry', 'date'];
myStrings[1] = 'grape';