flutter_tawk icon indicating copy to clipboard operation
flutter_tawk copied to clipboard

caching issue

Open ketanphpdots opened this issue 2 years ago • 1 comments

return Scaffold(
      backgroundColor: Colors.white,
      body: SafeArea(
        child: Obx(
          () => Tawk(
            directChatLink:
                'https://tawk.to/chat/url_part/widget_id',
            visitor: TawkVisitor(
              name: controllerr.name.value,
              email: controllerr.email.value,
            ),
            onLoad: () {},
            onLinkTap: (String url) {
            },
            placeholder: const Center(
              child: CircularProgressIndicator(),
            ),
          ),
        ),
      ),
    );

In my app I have set visitor name and email in visitor and when I logout that user and again I login with some other user and configure visitor then I can see previously logged in user's chat. I think there is a caching issue.

Can you let me know how can I fix this. Is there any properties which I can set to fix this caching issue ?

ketanphpdots avatar Nov 09 '22 10:11 ketanphpdots

Having this same issue.

EmmanuelJoshua avatar Dec 19 '22 20:12 EmmanuelJoshua