instructions property
inherited
Get route instructions list.
Returns
- A list of route instructions for the route segment.
Throws
- An exception if it fails.
Implementation
List<RouteInstruction> get instructions {
final OperationResult resultString = objectMethod(
_pointerId,
'RouteSegmentBase',
'getInstructions',
);
return RouteInstructionList.init(resultString['result'], _mapId).toList();
}