to static method

void to(
  1. BuildContext context,
  2. Widget widget
)

Implementation

static void to(BuildContext context, Widget widget) async {
  Navigator.push(context, MaterialPageRoute(builder: (_) => widget));
}