helpdesk_package 0.0.7
helpdesk_package: ^0.0.7 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: "ADMIN-1",
isAdmin: true,
supabaseUrl: "https://xxx.supabase.co",
supabaseAnonKey: "public-anon-key",
);
runApp(MaterialApp(home: AdminChatScreen(service: service)));
}