anchors method

List<FeatureAnchor> anchors(
  1. BuildContext? context
)

The anchors that present the feature's UI for a specific UI hook. It should be noted some anchors may be retrieved before a BuildContext is available, in which case the context parameter will be null. In such cases, the anchor will defer the creation of the anchor UI via a Builder - refer to the documentation of the specific FeatureAnchor documentation for more information.

Implementation

List<FeatureAnchor> anchors(
  BuildContext? context,
) {
  return [];
}