NavPoint constructor

NavPoint({
  1. required String classAttribute,
  2. required String id,
  3. required String playOrder,
  4. required String label,
  5. required String content,
  6. List<NavPoint> subNavPoints = const [],
})

Creates a new NavPoint with the given attributes.

Implementation

NavPoint({
  required this.classAttribute,
  required this.id,
  required this.playOrder,
  required this.label,
  required this.content,
  this.subNavPoints = const [],
});