FFPage<T> constructor

FFPage<T>({
  1. required String name,
  2. required LocalKey key,
  3. required PageBuilder builder,
  4. Object? arguments,
  5. bool? showStatusBar,
  6. String? routeName,
  7. PageRouteType? pageRouteType,
  8. String? description,
  9. Map<String, dynamic>? exts,
  10. Map<String, dynamic>? codes,
})

Implementation

FFPage({
  required String name,
  required LocalKey key,
  required this.builder,
  Object? arguments,
  this.showStatusBar,
  this.routeName,
  this.pageRouteType,
  this.description,
  this.exts,
  this.codes,
}) : super(
        key: key,
        name: name,
        arguments: arguments,
      );