intellicon_chat_sdk 1.0.0+1
intellicon_chat_sdk: ^1.0.0+1 copied to clipboard
A Flutter Intellicon chat sdk
Getting started #
flutter pub add intellicon_chat_sdk;
Usage #
Navigator.push<void>(
context,
MaterialPageRoute(
builder: (context) => Chat(
config: Config(
baseUrl: "https://iman.contegris.com",
appId: "d3383827cfaf9ce0506eafdec1921c11"),
user: User(
participantId: "7846512345798455458",
name: "Raja Sabiq Arfan",
fcmToken: ""),
chatStyle: ChatStyle(
appBarColor: Colors.black,
appBarTextColor: Colors.white,
bubbleStyle: BubbleStyle(visitorBgColor: Colors.blueGrey),
),
),
fullscreenDialog: true,
),
);