getCardsByIds method
Implementation
@override
Future<List<SRSCardState>> getCardsByIds(List<String> cardIds) async {
return cardIds
.map((id) => _store[id])
.where((s) => s != null)
.cast<SRSCardState>()
.toList();
}
@override
Future<List<SRSCardState>> getCardsByIds(List<String> cardIds) async {
return cardIds
.map((id) => _store[id])
.where((s) => s != null)
.cast<SRSCardState>()
.toList();
}