back method
void
back()
Emits the previous state, if history
is enabled.
otherwise, it does nothing.
Implementation
void back() {
if (!backIsPossible()) return;
_emitState(BitState.data(_history!.removeLast()), false);
}