socket_constants.dart 774 B

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