Moves the element at from to to, shifting other elements.
from
to
void move(int from, int to) { final item = removeAt(from); insert(to, item); }