getItemsByIds method

List<IAPItem> getItemsByIds(
  1. List<String> ids
)

Implementation

List<IAPItem> getItemsByIds(List<String> ids) {
  return _subscriptionItems
      .where((item) => ids.contains(item.productId))
      .toList();
}