teste
This commit is contained in:
parent
a097bd30e5
commit
c8e043eccc
|
@ -2389,6 +2389,26 @@ class GetLiberationsCopyCall {
|
||||||
.toList();
|
.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
|
/// End PHP Group Code
|
||||||
|
|
||||||
class ApiPagingParams {
|
class ApiPagingParams {
|
||||||
|
|
Loading…
Reference in New Issue