getRelationMaster method
Implementation
Future getRelationMaster(formType) async {
final response = await apiRequest(
'GET',
'${APP_URL}get-relationship-master?is_addition=$formType',
null,
);
relationMasterList = response['data'];
}