app-starlock/lib/tools/wechat/customer_tool.dart
魏少阳 a7336b79cc 1、添加开完锁之后数据上传
2、打包apk上传到pre下载页
3、完成App启动数据请求优化问题
2024-09-02 18:09:57 +08:00

19 lines
417 B
Dart

import 'package:url_launcher/url_launcher.dart';
//客服工具类
class CustomerTool {
static String _customerServiceUrl = '';
//初始化
static Future<void> init(String customerServiceUrl) async {
_customerServiceUrl = customerServiceUrl;
}
//打开客服
static void openCustomerService() {
if (_customerServiceUrl.isNotEmpty) {
launchUrl(Uri.parse(_customerServiceUrl));
}
}
}