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