From c8e043eccc494e018ec3b1dc0ebe37c3d1c3ff4c Mon Sep 17 00:00:00 2001 From: FlutterFlow <140657486+FlutterFlowEng@users.noreply.github.com> Date: Fri, 26 Jul 2024 12:51:10 +0000 Subject: [PATCH] teste --- lib/backend/api_requests/api_calls.dart | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/lib/backend/api_requests/api_calls.dart b/lib/backend/api_requests/api_calls.dart index 2a8838ec..29312482 100644 --- a/lib/backend/api_requests/api_calls.dart +++ b/lib/backend/api_requests/api_calls.dart @@ -2389,6 +2389,26 @@ class GetLiberationsCopyCall { .toList(); } +class TesteCall { + Future call() async { + final baseUrl = PhpGroup.getBaseUrl(); + + return ApiManager.instance.makeApiCall( + callName: 'teste', + apiUrl: '${baseUrl}est', + callType: ApiCallType.GET, + headers: {}, + params: {}, + returnBody: true, + encodeBodyUtf8: false, + decodeUtf8: false, + cache: false, + isStreamingApi: false, + alwaysAllowBody: false, + ); + } +} + /// End PHP Group Code class ApiPagingParams {