UpdateWalletConfigurationCommand constructor

UpdateWalletConfigurationCommand({
  1. required String walletId,
  2. String? newName,
  3. Map<String, dynamic>? newMetadata,
  4. String? commandId,
  5. DateTime? timestamp,
  6. Map<String, dynamic>? metadata,
})

Implementation

UpdateWalletConfigurationCommand({
  required String walletId,
  this.newName,
  this.newMetadata,
  String? commandId,
  DateTime? timestamp,
  Map<String, dynamic>? metadata,
}) : super(
        walletId: walletId,
        commandId: commandId,
        timestamp: timestamp,
        metadata: metadata,
      );