NPage constructor

NPage({
  1. bool isPrimary = false,
  2. String path = '/',
  3. List<NPage> pages = const [],
  4. required PageBuilder pageBuilder,
  5. bool useGroupId = false,
  6. RedirectBuilder? redirectBuilder,
  7. List<Type> groupList = const [],
})

Implementation

NPage({
  this.isPrimary = false,
  this.path = '/',
  this.pages = const [],
  required this.pageBuilder,
  this.useGroupId = false,
  this.redirectBuilder,
  this.groupList = const [],
});