flutter_tawk
flutter_tawk copied to clipboard
caching issue
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 ?
Having this same issue.