getRelationMaster method

Future getRelationMaster(
  1. dynamic formType
)

Implementation

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

  relationMasterList = response['data'];
}