ImportWalletCommand constructor

ImportWalletCommand({
  1. required String walletId,
  2. required String walletName,
  3. String? xpriv,
  4. String? mnemonic,
  5. String? wif,
  6. int gapLimit = 20,
  7. String networkType = 'test',
})

Implementation

ImportWalletCommand({
  required this.walletId,
  required this.walletName,
  this.xpriv,
  this.mnemonic,
  this.wif,
  this.gapLimit = 20,
  this.networkType = 'test',
});