beamBack method

void beamBack({
  1. Map<String, dynamic>? data,
})

Beams to previous state in beamStateHistory. and removes the last state from history.

If there is no previous state, does nothing.

Returns the success, whether the state updated.

Implementation

void beamBack({Map<String, dynamic>? data}) =>
    Beamer.of(this).beamBack(data: data);