buildConnections property
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'];
}
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,
);
}