RefundTransactionSignedResponse constructor

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

Implementation

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