solutionPartIndexes property

List<int> get solutionPartIndexes

Get indexes of the affected solution parts

Returns

  • Indexes list of the affected solution parts

Implementation

List<int> get solutionPartIndexes {
  final OperationResult resultString = objectMethod(
    pointerId,
    'PTBuyTicketInformation',
    'getSolutionPartIndexes',
  );

  return List<int>.from(resultString['result']);
}