This commit is contained in:
FlutterFlow 2024-07-26 12:51:10 +00:00 committed by jantunesmesias
parent a097bd30e5
commit c8e043eccc
1 changed files with 20 additions and 0 deletions

View File

@ -2389,6 +2389,26 @@ class GetLiberationsCopyCall {
.toList();
}
class TesteCall {
Future<ApiCallResponse> 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 {