isItemUnlcoked static method

Future<bool> isItemUnlcoked(
  1. String identifier
)

Implementation

static Future<bool> isItemUnlcoked(String identifier) async {
  _localList ??= await readListFromCahce();
  return _localList?.contains(identifier) ?? false;
}