Messages are being sent from a non-platform thread to Flutter; according to the documentation, we should ensure that all interactions with the Flutter MethodChannel occur on the main thread.
How does this address the issue?
To ensure thread safety and compliance with Flutter's platform channel requirements, this update modifies the handling of asynchronous callbacks from the Zendesk SDK.
What is the content type?
Why is this change necessary?
Messages are being sent from a non-platform thread to Flutter; according to the documentation, we should ensure that all interactions with the Flutter MethodChannel occur on the main thread.
How does this address the issue?
To ensure thread safety and compliance with Flutter's platform channel requirements, this update modifies the handling of asynchronous callbacks from the Zendesk SDK.