NopRoute constructor

NopRoute({
  1. required String name,
  2. required String fullName,
  3. required Widget builder(
    1. BuildContext context,
    2. dynamic arguments,
    3. Object? group
    ),
  4. NopRoute groupOwnerLate()?,
  5. String? groupKey,
  6. List<NopRoute>? children,
  7. String desc = '',
})

Implementation

NopRoute({
  required this.name,
  required this.fullName,
  required this.builder,
  this.groupOwnerLate,
  String? groupKey,
  this.children,
  this.desc = '',
}) : groupKey = groupKey ?? defaultGroupKey;