onReorder method
Implementation
void onReorder(int oldIndex, int newIndex) {
if (newIndex > oldIndex) {
newIndex -= 1;
}
final item = state!.removeAt(oldIndex);
state!.insert(newIndex, item);
change(state, status: RxStatus.success());
}