PaymentIntent constructor

PaymentIntent({
  1. required String id,
  2. required String status,
  3. required List<Charge> charges,
})

Implementation

PaymentIntent({
  required this.id,
  required this.status,
  required this.charges,
});