call method
Implementation
@override
Future<AppConfig?> call() async {
var establisment = await _findEstablishmentById.currentId();
if (establisment == null) return null;
var result = await _repository.findAppConfig(appId: establisment);
return result.appConfig;
}