helpdesk_package 0.0.6
helpdesk_package: ^0.0.6 copied to clipboard
A new Flutter packagefor helpdesk
example/lib/main.dart
import 'package:flutter/material.dart';
import 'package:helpdesk_package/helpdesk_chat.dart';
void main() async {
WidgetsFlutterBinding.ensureInitialized();
final service = await ChatService.init(
appKey: "your_app_key",
userId: "USER-123",
supabaseUrl: "https://xxx.supabase.co",
supabaseAnonKey: "public-anon-key",
);
runApp(MaterialApp(home: UserChatScreen(service: service)));
}