CreateWalletCommand constructor

CreateWalletCommand({
  1. required String walletId,
  2. required String name,
  3. String? mnemonic,
  4. String? wif,
  5. String? xpriv,
  6. String? xpub,
  7. Map<String, dynamic>? walletMetadata,
})

Implementation

CreateWalletCommand({
  required this.walletId,
  required this.name,
  this.mnemonic,
  this.wif,
  this.xpriv,
  this.xpub,
  this.walletMetadata,
});