isBinary property
bool
get
isBinary
If true, the value is valid for encoding binary data (base58, base64 or base64Zstd).
Implementation
bool get isBinary {
return this == AccountEncoding.base58
|| this == AccountEncoding.base64
|| this == AccountEncoding.base64Zstd;
}