CheckoutController constructor

CheckoutController({
  1. required PaymentService paymentService,
  2. required LookupService lookupService,
  3. required ShippingService shippingService,
  4. required ProfileService profileService,
  5. required ProductService productService,
  6. required HistoryService historyService,
})

Implementation

CheckoutController({
  required this.paymentService,
  required this.lookupService,
  required this.shippingService,
  required this.profileService,
  required this.productService,
  required this.historyService,
  // required this.facebookAppEvents,
  // required this.firebaseAnalytics,
});