publicTransportRespectsAllConditions property

bool get publicTransportRespectsAllConditions

Check if the solution meets all the preferences

Returns

  • True if the solution meets all the preferences, false otherwise.

Implementation

bool get publicTransportRespectsAllConditions {
  final OperationResult resultString = objectMethod(
    pointerId,
    'PTRoute',
    'getPTRespectsAllConditions',
  );

  return resultString['result'];
}