countBuyTicketInformation property

int get countBuyTicketInformation

Get number of BuyTicketInformation objects for PT route.

Returns

  • Number of BuyTicketInformation objects.

Implementation

int get countBuyTicketInformation {
  final OperationResult resultString = objectMethod(
    pointerId,
    'PTRoute',
    'getCountBuyTicketInformation',
  );

  return resultString['result'];
}