buildConnections property

bool get buildConnections

Enables building route segment connections metadata.

When true, the computed route includes detailed connection information.

Default is false.

Implementation

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

Enables building route segment connections metadata.

When true, the computed route includes detailed connection information.

Parameters

  • value: True to build connections metadata, false to omit it.

Default is false.

Implementation

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