getItemsByIds method

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

Implementation

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