Skip to main content

Flutter Configuration

LovinaChatConfig

The LovinaChatConfig class holds all configuration options for the chat widget.

final config = LovinaChatConfig(
websiteToken: 'your-website-token',
baseUrl: 'https://chat.lovina.app',
locale: 'en',
colorScheme: 'auto',
user: null,
customColor: null,
displayMode: 'fullscreen',
);

Fields

ParameterTypeDefaultRequiredDescription
websiteTokenString--YesYour Lovina website channel token. Obtained from the Lovina dashboard.
baseUrlString--YesBase URL of your Lovina instance (e.g., https://chat.lovina.app).
localeString'id'NoWidget locale code. Supported values include 'id', 'en', 'ar'.
colorSchemeString'auto'NoColor scheme for the widget. Accepts 'light', 'dark', or 'auto' (follows system theme).
userLovinaChatUser?nullNoPre-identified user to associate with the conversation. See below.
customColorString?nullNoHex color string for header and bubble theming (e.g., '#FF6B35').
displayModeString'fullscreen'NoWidget display mode. Accepts 'popup', 'sidebar', or 'fullscreen'.

LovinaChatUser

The LovinaChatUser class represents a pre-identified user.

ParameterTypeRequiredDescription
identifierStringYesUnique user ID in your system.
nameString?NoDisplay name.
emailString?NoEmail address.
avatarUrlString?NoAvatar image URL.
identifierHashString?NoHMAC hash for identity verification. Generate server-side.
phoneNumberString?NoPhone number (E.164 format recommended).
customAttributesMap<String, dynamic>?NoArbitrary key-value metadata attached to the contact.

Event Types

All events extend the ChatEvent base class.

Event ClassPropertiesDescription
ChatLoadedEventauthToken (String?)Widget finished loading.
MessageReceivedEventmessage (Map<String, dynamic>)New message received.
UnreadCountChangedEventcount (int)Unread count changed.
ChatClosedEventreason (String?)Chat was closed.
ChatErrorEventcode (String), message (String)An error occurred.

Example: Full Configuration

import 'package:lovina_chat_sdk/lovina_chat_sdk.dart';

final config = LovinaChatConfig(
websiteToken: 'ws-tok-abc123',
baseUrl: 'https://chat.lovina.app',
locale: 'en',
colorScheme: 'dark',
displayMode: 'fullscreen',
customColor: '#6366F1',
user: LovinaChatUser(
identifier: 'user-12345',
name: 'Jane Doe',
email: 'jane@example.com',
avatarUrl: 'https://example.com/avatar.png',
identifierHash: 'hmac-sha256-hash',
phoneNumber: '+6281234567890',
customAttributes: {
'plan': 'premium',
'signup_date': '2025-01-15',
},
),
);