getLatex method

Future<Uint8List> getLatex(
  1. String latex
)

Implementation

Future<Uint8List> getLatex(String latex) async {
  Response response = await cliente.post(urlapi,
      data: latex, options: Options(responseType: ResponseType.bytes));
  //   print(response.data);
  return response.data as Uint8List;
}