RefundTransactionBuiltResponse constructor

RefundTransactionBuiltResponse({
  1. required String channelId,
  2. required String refundTxHex,
  3. required bool success,
  4. String? error,
})

Implementation

RefundTransactionBuiltResponse({
  required this.channelId,
  required this.refundTxHex,
  required this.success,
  this.error,
}) : super(payload: null);