getDependentRequestList method

Future getDependentRequestList()

Implementation

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