FFRoute constructor

const FFRoute({
  1. required String name,
  2. bool showStatusBar = true,
  3. String routeName = '',
  4. PageRouteType? pageRouteType,
  5. String description = '',
  6. Map<String, dynamic>? exts,
  7. List<String>? argumentImports,
  8. Map<String, String>? codes,
})

Implementation

const FFRoute({
  required this.name,
  this.showStatusBar = true,
  this.routeName = '',
  this.pageRouteType,
  this.description = '',
  this.exts,
  this.argumentImports,
  this.codes,
});