PayEntity constructor

PayEntity({
  1. required String idTransaction,
  2. required String clientId,
  3. required String idempotenceKey,
  4. required double amountFull,
  5. String? emailClient,
  6. String? phoneClient,
  7. required String callbackUrl,
  8. String? descriptionPay,
  9. required List items,
})

Implementation

PayEntity({
  required this.idTransaction,
  required this.clientId,
  required this.idempotenceKey,
  required this.amountFull,
  this.emailClient,
  this.phoneClient,
  required this.callbackUrl,
  this.descriptionPay,
  required this.items,
});