NetworkType constructor

const NetworkType({
  1. required String messagePrefix,
  2. String? bech32,
  3. required Bip32Type bip32,
  4. required int pubKeyHash,
  5. required int scriptHash,
  6. required int wif,
})

Implementation

const NetworkType(
    {required this.messagePrefix,
    this.bech32,
    required this.bip32,
    required this.pubKeyHash,
    required this.scriptHash,
    required this.wif});