back method

void back()

Go back.

Implementation

void back() {
  if (_isDisposed) {
    throw Exception('Cannot call back() after state is disposed off.');
  }

  _renderElement!.openPreviousPath();
}