This commit is contained in:
hrxiang
2021-07-20 11:47:21 +08:00
parent b8ebc36d29
commit 631230a1df
4 changed files with 46 additions and 36 deletions

View File

@@ -2,6 +2,7 @@ library flutter_openim_sdk;
export 'src/enum/conversation_type.dart';
export 'src/enum/group_role.dart';
export 'src/enum/im_platform.dart';
export 'src/enum/listener_type.dart';
export 'src/enum/message_status.dart';
export 'src/enum/message_type.dart';

View File

@@ -0,0 +1,9 @@
class IMPlatform {
static const ios = 1;
static const android = 2;
static const windows = 3;
static const xos = 4;
static const web = 5;
static const mini_web = 6;
static const linux = 7;
}