GenerateAddressCommand constructor
GenerateAddressCommand({})
Implementation
GenerateAddressCommand({
required String walletId,
this.label,
this.purpose,
this.includePublicKey = false,
String? correlationId,
String? commandId,
DateTime? timestamp,
Map<String, dynamic>? metadata,
}) : super(
walletId: walletId,
commandId: commandId,
timestamp: timestamp,
metadata: {
...?metadata,
if (correlationId != null) 'correlationId': correlationId,
},
);