| 1234567891011121314151617 |
- import '../data/consts/constants.dart';
- class SocketConstants {
- static String locationBaseUrl = getLocationClientUrl();
- static const String refreshFriendList = 'd.refresh.friend.list'; // 刷新好友列表
- static const String refreshFriendRequest =
- 'd.refresh.friend.request'; // 刷新好友请求
- static const String refreshFriendMessage =
- 'd.refresh.friend.message'; // 刷新好友消息
- static const String refreshContact = 'd.refresh.contact'; // 刷新联系人
- static const String refreshMember = 'd.refresh.member'; // 刷新会员信息
- static const String refreshUserLogin = 'd.refresh.user.login'; // 刷新用户登录
- static const String receiveFriendBatchLocation =
- 'd.location.batch'; //批量接收好友位置信息
- }
|