I have a callback in my app that needs to run a async function. Ofcourse i need to await it however this gives me the error :SyntaxError: ‘await’ outside async function
I thought lets remove the await however that gives me :
RuntimeWarning: coroutine ‘ClassName.FunctionName()’ was never awaited
Is there something that I missed?