PaymentDataResponse constructor

const PaymentDataResponse({
  1. required String id,
  2. required String type,
  3. PaymentAttributesResponse? attributes,
})

Implementation

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