DerivationPath constructor

const DerivationPath({
  1. required String purpose,
  2. required String coinType,
  3. required String accountNumber,
  4. required String change,
  5. required String address,
})

Implementation

const DerivationPath({
  required this.purpose,
  required this.coinType,
  required this.accountNumber,
  required this.change,
  required this.address,
});