RecordServerAcceptanceCommand constructor

RecordServerAcceptanceCommand({
  1. required String channelId,
  2. required String serverPubKeyHex,
  3. required String serverAddressB58,
  4. String? commandId,
  5. DateTime? timestamp,
  6. Map<String, dynamic>? metadata,
})

Implementation

RecordServerAcceptanceCommand({
  required String channelId,
  required this.serverPubKeyHex,
  required this.serverAddressB58,
  String? commandId,
  DateTime? timestamp,
  Map<String, dynamic>? metadata,
}) : super(
        channelId: channelId,
        commandId: commandId,
        timestamp: timestamp,
        metadata: metadata,
      );