discoverFeatures static method

void discoverFeatures(
  1. BuildContext context,
  2. Iterable<String> steps
)

Steps are the featureIds of the overlays. Though they can be placed in any Iterable, it is recommended to pass them as a Set because this ensures that every step is only shown once.

Implementation

static void discoverFeatures(BuildContext context, Iterable<String> steps) =>
    _blocOf(context).discoverFeatures(steps.toList());