extraInfo property
Get the route's extra information.
Returns
- SearchableParameterList object containing extra information associated with the route.
Throws
- An exception if it fails.
Implementation
SearchableParameterList get extraInfo {
final OperationResult resultString = objectMethod(
_pointerId,
'Route',
'getExtraInfo',
);
return SearchableParameterList.init(resultString['result'], 0);
}
Set user extra info.
Parameters
- IN value A SearchableParameterList containing extra information to be associated with the route.
Throws
- An exception if it fails.
Implementation
set extraInfo(final SearchableParameterList value) {
objectMethod(_pointerId, 'Route', 'setExtraInfo', args: value.pointerId);
}