getRuleByStepIdentifier method

NavigationRule? getRuleByStepIdentifier(
  1. StepIdentifier? stepIdentifier
)

Gets the NavigationRule which is defined for the given StepIndentifier Returns null if none is defined

Implementation

NavigationRule? getRuleByStepIdentifier(StepIdentifier? stepIdentifier) {
  return navigationRules[stepIdentifier];
}