handleError method
Implementation
void handleError(String? error, Pointer<BytesReturn> result) {
if (error != null && error.isNotEmpty) {
freeResult(result);
throw RSAException(error);
}
}
void handleError(String? error, Pointer<BytesReturn> result) {
if (error != null && error.isNotEmpty) {
freeResult(result);
throw RSAException(error);
}
}