PurchaseHistory constructor

const PurchaseHistory({
  1. Key? key,
  2. required dynamic onChildRender(
    1. InAppPurchaseModel purcahses
    ),
  3. required Widget appBar,
})

Implementation

const PurchaseHistory({
  Key? key,
  required this.onChildRender,
  required this.appBar,
}) : super(key: key);