FeatureRouteData constructor

FeatureRouteData({
  1. required String name,
  2. required String description,
  3. required String fullPath,
  4. Map<String, dynamic> extra = const {},
})

Implementation

FeatureRouteData({
  required this.name,
  required this.description,
  required this.fullPath,
  this.extra = const {},
});