next static method

void next(
  1. BuildContext context
)

Implementation

static void next(BuildContext context) {
  if (_workFlowController == null) {
    throw Exception('Routes must be set using setRoutes() before navigating.');
  }
  _workFlowController!.next(context);
}