DealPauseStatus constructor

DealPauseStatus({
  1. String? buyerPauseReason,
  2. String? firstPausedBy,
  3. bool? hasBuyerPaused,
  4. bool? hasSellerPaused,
  5. String? sellerPauseReason,
})

Implementation

DealPauseStatus({
  this.buyerPauseReason,
  this.firstPausedBy,
  this.hasBuyerPaused,
  this.hasSellerPaused,
  this.sellerPauseReason,
});