insert method

void insert(
  1. int index,
  2. dynamic value
)

Implementation

void insert(int index, dynamic value) {
  _list.insert(index, value);
}