NavigationAction constructor

NavigationAction({
  1. NavigationType navigationType = NavigationType.push,
  2. LinkType linkType = LinkType.url,
  3. ObjectReference? route,
  4. String? url,
  5. String? title,
})

Implementation

NavigationAction({
  this.navigationType = NavigationType.push,
  this.linkType = LinkType.url,
  this.route,
  this.url,
  super.title,
}) : super(schemaType: schemaName);