removeAt method

  1. @override
void removeAt(
  1. int index
)
override

Removes the value at the given index

Implementation

@override
void removeAt(int index) {
  final list = value;
  list.removeAt(index);
  set(list);
}