getCrmIntouchList method

Future<List<CrmIntouch>> getCrmIntouchList(
  1. dynamic params
)

Implementation

Future<List<CrmIntouch>> getCrmIntouchList(params) async {
  NetworkResponse response = await _api.getCrmIntouchList(params);
  return response.data ?? [];
}