A static method needs to be accessed on the class not an instance. So in your case, use:
Content.getValue()
However, a static method won’t be able to access this — I don’t think you want the method to be static based on your code sample above.
More: Static Members in ES6