logoutWebUser method
This method is used to logout the user from web
Implementation
@override
Future<bool?> logoutWebUser() async {
bool? response;
try {
response =
await mirrorFlyMethodChannel.invokeMethod<bool>('logoutWebUser');
LogMessage.d("logoutWebUser Response ", " $response");
return response;
} on PlatformException catch (e) {
LogMessage.d("Platform Exception =", " $e");
return false;
// rethrow;
} on Exception catch (error) {
LogMessage.d("Exception ", " $error");
return false;
// rethrow;
}
}