RefundRequest constructor

const RefundRequest({
  1. required String swapAddress,
  2. required String toAddress,
  3. required int satPerVbyte,
  4. bool? unilateral,
})

Implementation

const RefundRequest({
  required this.swapAddress,
  required this.toAddress,
  required this.satPerVbyte,
  this.unilateral,
});