FFRouteSettings constructor

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

Implementation

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