pushNamed static method

void pushNamed(
  1. BuildContext context,
  2. String page
)

Implementation

static void pushNamed(BuildContext context, String page) {
  Navigator.of(context).pushNamed(page);
}