BasicWallet class
BasicWallet holds the basic wallet information which consists of:
- hexPublicKey - the public key in hex format
- wif - the Wallet Information Format (contains the private key within)
- address - the Base64 encoded address
Constructors
- BasicWallet(HexPublicKey hexPublicKey, Wif wif, Address address)
-
BasicWallet.fromJson(Map<
String, dynamic> json)
Properties
- address ↔ Address
-
getter/setter pair
- hashCode → int
-
The hash code for this object.
no setteroverride
- hexPublicKey ↔ HexPublicKey
-
getter/setter pair
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- wif ↔ Wif
-
getter/setter pair
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toJson(
) → Map< String, dynamic> -
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object o) → bool -
The equality operator.
override