SaleWithTokenResponse constructor

const SaleWithTokenResponse({
  1. required TransactionStatus status,
  2. required bool isApproved,
  3. double? approvedAmount,
  4. String? tpId,
  5. HostResponse? host,
  6. String? errorMessage,
})

Implementation

const SaleWithTokenResponse({
  required this.status,
  required this.isApproved,
  this.approvedAmount,
  this.tpId,
  this.host,
  this.errorMessage,
});