<body ng-app="myApp">
<div ng-controller="SampleController as c">
<input type="checkbox" name="check" ng-model="checked">
<label for="check" ng-init="checked=true">only yes , toggle yes & no</label>
<div>filter list </div>
<div>
<div>from get ServiceFunction</div>
<ul>
<li ng-if="checked" ng-repeat="fafa in c.getedService.data">
<!-- Service list-->
{{fafa.namae}}
</li>
</ul>
</div>
</div>
</body>