Aidra Connect 10.0.2+16
Aidra Connect Mobile Application
Loading...
Searching...
No Matches
dicument_remote_datasource.dart
Go to the documentation of this file.
1import 'package:connect/core/api/api_client.dart';
2
3import '../../../../../core/services/service_locator.dart';
4
7
9
10 Future<List<dynamic>> getDocuments({required String parentid}) async {
11 final response = await apiClient.get(
12 '',
13 {},
14 false,
15 'https://dev-api.aidra.tech/document/listPartnerDocument/$parentid/partner',
16 );
17 return response;
18 }
19}
Future< dynamic > get(String path, [Map< String, dynamic >? headers, bool? isAuth, String? url,]) async
Future< List< dynamic > > getDocuments({required String parentid}) async
final sl