countBuyTicketInformation property

int get countBuyTicketInformation

Get number of BuyTicketInformation objects for PT route.

Returns

  • Number of BuyTicketInformation objects.

Throws

  • An exception if it fails.

Implementation

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

  return resultString['result'];
}