PaymentIntentAttachResponse constructor

const PaymentIntentAttachResponse({
  1. required String id,
  2. required String type,
  3. required PaymentIntentAttachResponseAttributes attributes,
})

Returns a resposne when you attach a payment intent.

Implementation

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