FFLibraryPageRoutePath constructor

FFLibraryPageRoutePath({
  1. String? pageKey,
  2. FFValue? routePath,
  3. FFNavBarItem? navBarSettings,
})

Implementation

factory FFLibraryPageRoutePath({
  $core.String? pageKey,
  FFValue? routePath,
  FFNavBarItem? navBarSettings,
}) {
  final result = create();
  if (pageKey != null) result.pageKey = pageKey;
  if (routePath != null) result.routePath = routePath;
  if (navBarSettings != null) result.navBarSettings = navBarSettings;
  return result;
}