SignerEntry constructor

SignerEntry({
  1. required String account,
  2. required int signerWeight,
  3. String? walletLocator,
})

walletLocator An arbitrary 256-bit (32-byte) field that can be used to identify the signer, which may be useful for smart contracts, or for identifying who controls a key in a large organization.

Implementation

SignerEntry(
    {required this.account, required this.signerWeight, this.walletLocator});