DeUnaCheckout constructor

const DeUnaCheckout({
  1. Key? key,
  2. required String orderToken,
  3. DeUnaCheckoutData? configuration,
})

DeUnaCheckout is a widget that allows you to display a webview with the DeUnaCheckoutConfiguration provided.

Implementation

const DeUnaCheckout({
  Key? key,
  required this.orderToken,
  this.configuration,
}) : super(key: key);