hasPreviouslyCompleted static method

Future<bool> hasPreviouslyCompleted(
  1. BuildContext context,
  2. String featureId
)

This will return true iff this featureId has been recorded as completed in the Shared Preferences.

Implementation

static Future<bool> hasPreviouslyCompleted(
  BuildContext context,
  String featureId,
) =>
    _blocOf(context).hasPreviouslyCompleted(featureId);