afterPageStartedOrFinished method

void afterPageStartedOrFinished({
  1. required String? currentUrl,
  2. required bool canGoBack,
  3. required bool canGoForward,
})

Implementation

void afterPageStartedOrFinished({required String? currentUrl, required bool canGoBack, required bool canGoForward}) {
  state = state.copyWith(currentUrl: currentUrl, canGoBack: canGoBack, canGoForward: canGoForward);
}