-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapi_service.dart
More file actions
79 lines (60 loc) · 1.55 KB
/
api_service.dart
File metadata and controls
79 lines (60 loc) · 1.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
import 'dart:async';
import 'dart:io';
import 'package:dio/dio.dart';
import '../api_options/api_options.dart';
abstract class ApiService {
Future<Response<T>> get<T>({
String? endpoint,
String? url,
String? body,
ApiOptions? options,
});
Future<Response<T>> post<T>({
String? url,
String? endpoint,
String? body,
ApiOptions? options,
bool isRefreshTokenRequest = false,
});
Future<Response<T>> put<T>({
String? endpoint,
String? body,
ApiOptions? options,
});
Future<Response<T>> delete<T>({String? endpoint, ApiOptions? options});
Future<Response<T>> patch<T>({
String? endpoint,
String? body,
ApiOptions? options,
});
Future<Response<T>> postFile<T>({
String? endpoint,
String? url,
String? keyName,
File? file,
ApiOptions? options,
ProgressCallback? onSendProgress,
Map<String, dynamic>? queryParameters,
Map<String, dynamic>? dataParameters,
});
Future<Response<T>> putFile<T>({
String? endpoint,
String? url,
String? keyName,
File? file,
ApiOptions? options,
ProgressCallback? onSendProgress,
Map<String, dynamic>? queryParameters,
});
void setBaseUrl(String baseUrl);
String getBaseUrl();
void setBlobUrl(String blobUrl);
String getBlobUrl(String path);
String getFileUploadUrl();
Dio? getDioFile();
Dio? getApiClient();
Dio? getRefreshTokenApiClient();
/// get key for disabling auth for some requests.
String getIsAuthRequiredKey();
Future<String> requestTranformer(RequestOptions options);
}