ImportWalletFromXprivCommand constructor

ImportWalletFromXprivCommand({
  1. required String walletId,
  2. required String xpriv,
  3. required String walletName,
  4. bool importTransactionHistory = true,
  5. int addressGapLimit = 20,
  6. int? transactionLimit,
  7. Map<String, dynamic>? walletMetadata,
  8. String? commandId,
  9. DateTime? timestamp,
  10. Map<String, dynamic>? metadata,
})

Implementation

ImportWalletFromXprivCommand({
  required String walletId,
  required this.xpriv,
  required this.walletName,
  this.importTransactionHistory = true,
  this.addressGapLimit = 20,
  this.transactionLimit,
  this.walletMetadata,
  String? commandId,
  DateTime? timestamp,
  Map<String, dynamic>? metadata,
}) : super(
        walletId: walletId,
        commandId: commandId,
        timestamp: timestamp,
        metadata: metadata,
      );