startWorkflow static method
Implementation
static void startWorkflow(BuildContext context, int workFlowId) {
if (_workFlowController == null) {
throw Exception('Routes must be set using setRoutes() before starting the workflow.');
}
_workFlowController!.startWorkflow(context, workFlowId);
}