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