Multibase enum
Not all multibase spec base types are supported by this library.
We support the default
ones from the official repo in https://github.com/multiformats/multibase/blob/master/multibase.csv.
Values
- base16 → const Multibase
-
hexadecimal
const Multibase(code: 'f', name: "base16")
- base16upper → const Multibase
-
hexadecimal
const Multibase(code: 'F', name: "base16upper")
- base32 → const Multibase
-
rfc4648 case-insensitive - no padding
const Multibase(code: 'b', name: "base32")
- base32upper → const Multibase
-
rfc4648 case-insensitive - no padding
const Multibase(code: 'B', name: "base32upper")
- base58btc → const Multibase
-
base58 bitcoin
const Multibase(code: 'z', name: "base58btc")
- base64 → const Multibase
-
rfc4648 no padding
const Multibase(code: 'm', name: "base64")
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