getWebLoginDetails method
Implementation
@override
Future<dynamic> getWebLoginDetails() async {
dynamic response;
try {
response =
await mirrorFlyMethodChannel.invokeMethod('getWebLoginDetails');
debugPrint("getWebLoginDetails Response ==> $response");
return response;
} on PlatformException catch (e) {
debugPrint("Platform Exception ===> $e");
rethrow;
} on Exception catch (error) {
debugPrint("Exception ==> $error");
rethrow;
}
}