navigationRoute property

Route get navigationRoute

Get the navigation session route to which the instruction belongs

Returns

  • Route object to which the instruction belongs

Implementation

Route get navigationRoute {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'NavigationInstruction',
    'getNavigationRoute',
  );

  return Route.init(resultString['result']);
}