extraInfo property

SearchableParameterList get extraInfo

Extra metadata attached to the route.

Returns a searchable list of custom parameters attached to this route instance. This can be used to persist auxiliary information produced by the routing engine or by the application.

Returns

Implementation

SearchableParameterList get extraInfo {
  final OperationResult resultString = objectMethod(
    super.pointerId,
    'Route',
    'getExtraInfo',
  );

  return SearchableParameterList.init(resultString['result']);
}
set extraInfo (SearchableParameterList value)

Sets extra metadata for this route.

Associates a SearchableParameterList with this route for later retrieval via extraInfo.

Parameters

Implementation

set extraInfo(final SearchableParameterList value) {
  objectMethod(
    super.pointerId,
    'Route',
    'setExtraInfo',
    args: value.pointerId,
  );
}