ShelleyAddressKit constructor

const ShelleyAddressKit({
  1. int account = defaultAccountIndex,
  2. int role = paymentRole,
  3. required int index,
  4. required ShelleyAddress address,
  5. Bip32SigningKey? signingKey,
  6. Bip32VerifyKey? verifyKey,
})

Implementation

const ShelleyAddressKit(
    {this.account = defaultAccountIndex,
    this.role = paymentRole,
    required this.index,
    required this.address,
    Bip32SigningKey? signingKey,
    Bip32VerifyKey? verifyKey})
    : super(signingKey: signingKey, verifyKey: verifyKey);