publicTransportFrequency property

int get publicTransportFrequency

Get Frequency

Returns

  • Frequency of the route.

Throws

  • An exception if it fails.

Implementation

int get publicTransportFrequency {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'PTRoute',
    'getPTFrequency',
  );

  return resultString['result'];
}