CheckoutOrchestrator constructor

CheckoutOrchestrator({
  1. required CheckoutsService checkoutService,
  2. required GatewayService gatewayService,
})

Implementation

CheckoutOrchestrator({
  required CheckoutsService checkoutService,
  required GatewayService gatewayService,
}) : _checkoutService = checkoutService,
     _gatewayService = gatewayService;