getExistingUserByPhone method

Future<ContactModel?> getExistingUserByPhone(
  1. dynamic params
)

Implementation

Future<ContactModel?> getExistingUserByPhone(params) async {
  NetworkResponse response = await _api.getExistingUserByPhone(params);
  return response.data;
}