logOut method
Logs out the currently logged in user session. This will remove the session from disk, log out
of linked services, and future calls to currentUser will return null
.
Implementation
static Future<void> logOut() async {
return FlutterParse._channel.invokeMethod('logout');
}