onDidChangeAFib method

void onDidChangeAFib(
  1. AFBuildContext<TStateView, TRouteParam>? previous,
  2. AFBuildContext<TStateView, TRouteParam>? next
)
inherited

Implementation

void onDidChangeAFib(AFBuildContext<TStateView, TRouteParam>? previous, AFBuildContext<TStateView, TRouteParam>? next) {
  if(previous == null || next == null) {
    return;
  }

  onDidChange(previous, next);
}