TWDerivationPathIndex class abstract

Represents a derivation path index in C++ with value and hardened flag.

Constructors

TWDerivationPathIndex.new()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

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

Static Methods

TWDerivationPathIndexCreate(int value, bool hardened) Pointer<Void>
Creates a new Index with a value and hardened flag. Must be deleted with TWDerivationPathIndexDelete after use.
TWDerivationPathIndexDelete(Pointer<Void> index) → void
Deletes an Index.
TWDerivationPathIndexDescription(Pointer<Void> index) Pointer<Utf8>
Returns the string description of a derivation path index.
TWDerivationPathIndexHardened(Pointer<Void> index) bool
Returns hardened flag of an Index.
TWDerivationPathIndexValue(Pointer<Void> index) int
Returns numeric value of an Index.