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.

Inheritance
Available extensions

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

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

Constants

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