encodeAsBase58 method
Implementation
Base58Data encodeAsBase58() {
try {
return Base58Data(this);
} on Exception catch (e) {
throw ArgumentError('Infallible encoder failed: $e');
}
}
Base58Data encodeAsBase58() {
try {
return Base58Data(this);
} on Exception catch (e) {
throw ArgumentError('Infallible encoder failed: $e');
}
}