move method
Moves an item from one position to another
This method accepts two int
as indices, to move a ItemSerializable from
one place to another
Implementation
@override
void move(int oldIndex, int newIndex, {bool notify = true}) {
super.move(oldIndex, newIndex);
if (notify) notifyListeners();
}