clearStep method

  1. @override
Future<void> clearStep(
  1. String featureId
)
override

Requests that the persistence layer should remove the completion of the step identified by featureId.

Implementation

@override
Future<void> clearStep(String featureId) async {
  final prefs = await SharedPreferences.getInstance();
  await prefs.remove(_normalizeFeatureId(featureId));
}