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