Base58Data class
Byte data represented by Base-58 encoded text. @param value the underlying bytes data
Constructors
- Base58Data(Uint8List value)
-
Creates
Base58Data
from the given data input. @param bytes the bytes to createBase58Data
from @return aBase58Data
instance - Base58Data.unsafe(String from)
-
Unsafely creates a
Base58Data
instance from aString
. Throws anArgumentError
if the input is not a valid Base-58 encoded string. @param from theString
to create theBase58Data
from @return theBase58Data
@throws ArgumentError when the input string is not a valid Base-58 encoding.factory - Base58Data.validated(String from)
-
Creates a
Base58Data
value from aString
. Validates that the input String is a valid Base-58 encoding. @param from theString
to create theBase58Data
from. @return aDataEncodingValidationFailure
representing a validation error or theBase58Data
instance
Properties
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