Using dependency injection like below, I know I can call the translation service. But I have few scenarios where I don't intend to have a constructor-
constructor(
public translate: TranslateService
) { }
Can anyone please suggest if there is a way where I can create a static class and use it like any other normal utility class function? Or if I could somehow get the global reference to translation service without injecting the dependency.