MultiSignatureSigner class

MultiSignatureSigner is an interface that defines methods required for representing signers in a multi-signature scheme. A multi-signature signer typically includes information about their public key and weight within the scheme.

Constructors

MultiSignatureSigner.new({required String publicKey, required int weight})
creates a new instance of a multi-signature signer with the specified public key and weight.
factory

Properties

hashCode int
The hash code for this object.
no setterinherited
publicKey String
PublicKey returns the public key associated with the signer.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
weight int
Weight returns the weight or significance of the signer within the multi-signature scheme. The weight is used to determine the number of signatures required for a valid transaction.
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited