getDependentRequestList method
Implementation
Future getDependentRequestList() async {
final response = await apiRequest(
'GET',
'${APP_URL}get-addition-request',
null,
);
dependentUpdateList = response['data']['result'];
}
Future getDependentRequestList() async {
final response = await apiRequest(
'GET',
'${APP_URL}get-addition-request',
null,
);
dependentUpdateList = response['data']['result'];
}