solutionPartIndexes property
Indexes of the route solution parts affected by this ticket offer.
Returns
List<int>: Zero-based indexes identifying affected parts of the route solution.
Implementation
List<int> get solutionPartIndexes {
final OperationResult resultString = objectMethod(
pointerId,
'PTBuyTicketInformation',
'getSolutionPartIndexes',
);
return List<int>.from(resultString['result']);
}