NavigationInfo constructor

NavigationInfo({
  1. List<String>? children,
  2. String? next,
  3. String? parent,
  4. String? previous,
})

Implementation

NavigationInfo({
  this.children,
  this.next,
  this.parent,
  this.previous,
});