publicTransportFare property

String? get publicTransportFare

Get Fare

Returns

  • Fare of the route.

Implementation

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

  final dynamic result = resultString['result'];

  return (result == null || result is! String || result.isEmpty)
      ? null
      : result;
}