call method
Implementation
@override
Future<PointsRulesModel?> call() async {
var response = await _findEstablishmentById.currentId();
if (response == null) {
return null;
}
var result = await _repository.getPointsRule(
appId: response,
);
return result;
}