putAt abstract method

Future<void> putAt(
  1. int index,
  2. E value, {
  3. bool notify = true,
})

Associates the value with the n-th key. An exception is raised if the key does not exist.

Implementation

Future<void> putAt(
  int index,
  E value, {
  bool notify = true,
});