initRouter function

dynamic initRouter(
  1. Color? backgroundColor,
  2. Widget? notFoundPage
)

Implementation

initRouter(Color? backgroundColor, Widget? notFoundPage) {
  if (backgroundColor != null) fastRouterBgColor = backgroundColor;
  if (notFoundPage != null) notFoundWidget = notFoundPage;
}