moveTo static method

dynamic moveTo(
  1. BuildContext context,
  2. Widget routePage
)

Implementation

static moveTo(BuildContext context, Widget routePage) {
  Navigator.push(context, MaterialPageRoute(builder: (_) => routePage));
}