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