boolResponse static method

bool boolResponse(
  1. Uint8List data
)

Implementation

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