bytesResponse static method

Uint8List bytesResponse(
  1. Uint8List data
)

Implementation

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