import 'package:bytedesk_kefu/http/bytedesk_user_api.dart'; class TicketRepository { final BytedeskUserHttpApi bytedeskHttpApi = BytedeskUserHttpApi(); TicketRepository(); // Future> getHelpTicketCategories() async { // return await bytedeskHttpApi.getHelpTicketCategories(); // } // Future submitTicket(String? content, List imageUrls) async { // return await bytedeskHttpApi.submitTicket(content, imageUrls); // } Future upload(String? filePath) async { return await bytedeskHttpApi.upload(filePath); } }