boolResponse static method
Implementation
static bool boolResponse(Uint8List data) {
var response = model.BoolResponse(data);
if (response.error != null && response.error != "") {
throw OpenPGPException(response.error!);
}
return response.output;
}