Paywall constructor

const Paywall({
  1. required String id,
  2. required List<ProductModel> products,
})

Implementation

const Paywall({
  required this.id,
  required this.products,
});