publicTransportFare property

String get publicTransportFare

Get Fare

Returns

  • Fare of the route.

Throws

  • An exception if it fails.

Implementation

String get publicTransportFare {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'PTRoute',
    'getPTFare',
  );

  return resultString['result'];
}