You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
725 B
23 lines
725 B
import 'package:bytedesk_kefu/http/bytedesk_leavemsg_api.dart';
|
|
import 'package:bytedesk_kefu/model/helpCategory.dart';
|
|
import 'package:bytedesk_kefu/model/jsonResult.dart';
|
|
|
|
class LeaveMsgRepository {
|
|
final BytedeskLeaveMsgHttpApi bytedeskHttpApi = BytedeskLeaveMsgHttpApi();
|
|
|
|
LeaveMsgRepository();
|
|
|
|
Future<List<HelpCategory>> getHelpLeaveMsgCategories(String? uid) async {
|
|
return await bytedeskHttpApi.getHelpLeaveMsgCategories(uid);
|
|
}
|
|
|
|
Future<JsonResult> submitLeaveMsg(
|
|
String? content, List<String>? imageUrls) async {
|
|
return await bytedeskHttpApi.submitLeaveMsg(content, imageUrls);
|
|
}
|
|
|
|
Future<String> upload(String? filePath) async {
|
|
return await bytedeskHttpApi.upload(filePath);
|
|
}
|
|
}
|