alternativeRoutesBalancedSorting property

bool get alternativeRoutesBalancedSorting

Enables balanced sorting for alternative route results.

Balances sorting of alternative routes.

Default is true.

Implementation

bool get alternativeRoutesBalancedSorting {
  final OperationResult resultString = objectMethod(
    pointerId,
    'RoutePrefWrapper',
    'getAlternativeRoutesBalancedSorting',
  );
  return resultString['result'];
}
set alternativeRoutesBalancedSorting (bool value)

Enables balanced sorting for alternative route results.

Balances sorting of alternative routes.

Parameters

  • value: True to enable balanced sorting, false to disable.

Default is true.

Implementation

set alternativeRoutesBalancedSorting(final bool value) {
  objectMethod(
    pointerId,
    'RoutePrefWrapper',
    'alternativeroutesbalancedsorting',
    args: value,
  );
}