SecretStringError enum

Inheritance
Available extensions

Values

invalidFormat → const SecretStringError

The overall format was invalid (e.g. the seed phrase contained symbols).

const SecretStringError('Invalid format', 'The overall format was invalid (e.g. the seed phrase contained symbols).')
invalidPhrase → const SecretStringError

The seed phrase provided is not a valid BIP39 phrase.

const SecretStringError('Invalid phrase', 'The seed phrase provided is not a valid BIP39 phrase.')
invalidPassword → const SecretStringError

The supplied password was invalid.

const SecretStringError('Invalid password', 'The supplied password was invalid.')
invalidSeed → const SecretStringError

The seed is invalid (bad content).

const SecretStringError('Invalid seed', 'The seed is invalid (bad content).')
invalidSeedLength → const SecretStringError

The seed has an invalid length.

const SecretStringError('Invalid seed length', 'The seed has an invalid length.')
invalidPath → const SecretStringError

The derivation path was invalid (e.g. contains soft junctions when they are not supported).

const SecretStringError('Invalid path', 'The derivation path was invalid (e.g. contains soft junctions when they are not supported).')
invalidEntropy → const SecretStringError

The entropy byte length was invalid

const SecretStringError('Invalid Entropy', 'entropy byte length must be between 16 and 32 and multiple of 4')

Properties

description String
final
hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
message String
final
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

Constants

values → const List<SecretStringError>
A constant List of the values in this enum, in order of their declaration.