setValueAt method

  1. @override
Future<void> setValueAt(
  1. int index,
  2. E value
)
override

Async sets the value at the given index in the list to value.

Implementation

@override
Future<void> setValueAt(int index, E value) async {
  return Future<void>(() => throw UnsupportedError('Unmodifiable operation'));
}