pushNamed static method

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

Implementation

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