loginWebChatViaQRCode method
Future<void>
loginWebChatViaQRCode(
- String barcode,
- dynamic callback(
- FlyResponse response
override
This method is used to login in Web using QR Code
Implementation
@override
Future<void> loginWebChatViaQRCode(
String barcode, Function(FlyResponse response)? callback) async {
bool? response;
try {
response = await mirrorFlyMethodChannel
.invokeMethod<bool>('loginWebChatViaQRCode', {"barcode": barcode});
LogMessage.d("loginWebChatViaQRCode Response ", " $response");
callback?.call(FlyResponse(true, FlyConstants.empty, FlyConstants.empty));
// return response;
} on PlatformException catch (e) {
LogMessage.d("Platform Exception =", " $e");
callback?.call(FlyResponse(false, FlyConstants.empty, FlyConstants.empty,
FlyException(e.code, e.message, e.details)));
} on Exception catch (e) {
LogMessage.d("Exception ", " $e");
callback?.call(FlyResponse(false, FlyConstants.empty, FlyConstants.empty,
FlyException(FlyErrorCode.unHandle, FlyErrorMessage.unHandle, e)));
}
}