ClaimRefundCommand constructor

ClaimRefundCommand({
  1. required String channelId,
  2. String? commandId,
  3. DateTime? timestamp,
  4. Map<String, dynamic>? metadata,
})

Implementation

ClaimRefundCommand({
  required String channelId,
  String? commandId,
  DateTime? timestamp,
  Map<String, dynamic>? metadata,
}) : super(
        channelId: channelId,
        commandId: commandId,
        timestamp: timestamp,
        metadata: metadata,
      );