hasCompletedStep method

  1. @override
Future<bool> hasCompletedStep(
  1. String featureId
)
override

Returns true if the step identified by featureId has completed by the user earlier, false otherwise.

Implementation

@override
Future<bool> hasCompletedStep(String featureId) async =>
    _steps.contains(featureId);