PaymentIntentResponse constructor

const PaymentIntentResponse({
  1. required String id,
  2. required String type,
  3. required PaymentIntentResponseAttributes attributes,
})

payment intent response

Implementation

const PaymentIntentResponse({
  required this.id,
  required this.type,
  required this.attributes,
});