WalletSetting constructor

WalletSetting({
  1. required String bip44Path,
  2. String prefix = '',
  3. NetworkType? networkType,
  4. int bech32Length = 38,
  5. String regExp = COMMON_REG,
  6. AddressType addressType = AddressType.NONE,
})

Implementation

WalletSetting(
    {required this.bip44Path,
    this.prefix = '',
    this.networkType,
    this.bech32Length = 38,
    this.regExp = COMMON_REG,
    this.addressType = AddressType.NONE});