pushReplacement method

dynamic pushReplacement(
  1. Widget child
)

Implementation

pushReplacement(Widget child) {
  Navigator.pushReplacement(
      this,
      MaterialPageRoute(
        builder: (context) => child,
      ));
}