I need to check my file reading was successful and return true or false. I need to use async and await function because it needs to return true otherwise no point continuing.
I get a run time error from my snapshot: format.Exception:Invalid boolean false
Offending line is: bool result = await fb.readFile();
More detail image:


You dont have a return, maybe something like this:
Good luck