release-3.0.0
This commit is contained in:
parent
9856ac8281
commit
8cc844a408
@ -20,7 +20,6 @@ class IMManager {
|
|||||||
late UserInfo userInfo;
|
late UserInfo userInfo;
|
||||||
bool isLogined = false;
|
bool isLogined = false;
|
||||||
String? token;
|
String? token;
|
||||||
String? _objectStorage;
|
|
||||||
|
|
||||||
IMManager(this._channel) {
|
IMManager(this._channel) {
|
||||||
conversationManager = ConversationManager(_channel);
|
conversationManager = ConversationManager(_channel);
|
||||||
@ -408,7 +407,6 @@ class IMManager {
|
|||||||
String? operationID,
|
String? operationID,
|
||||||
}) {
|
}) {
|
||||||
this._connectListener = listener;
|
this._connectListener = listener;
|
||||||
this._objectStorage = objectStorage;
|
|
||||||
return _channel.invokeMethod(
|
return _channel.invokeMethod(
|
||||||
'initSDK',
|
'initSDK',
|
||||||
_buildParam(
|
_buildParam(
|
||||||
|
@ -188,8 +188,6 @@ class UserInfo {
|
|||||||
|
|
||||||
int? get _birth => friendInfo?.birth;
|
int? get _birth => friendInfo?.birth;
|
||||||
|
|
||||||
String? get _birthTime => friendInfo?.birthTime;
|
|
||||||
|
|
||||||
String? get _email => friendInfo?.email;
|
String? get _email => friendInfo?.email;
|
||||||
|
|
||||||
String? get _remark => friendInfo?.remark;
|
String? get _remark => friendInfo?.remark;
|
||||||
@ -280,9 +278,6 @@ class FriendInfo {
|
|||||||
String? phoneNumber;
|
String? phoneNumber;
|
||||||
|
|
||||||
/// 出生日期
|
/// 出生日期
|
||||||
String? birthTime;
|
|
||||||
|
|
||||||
/// 使用[birthTime]
|
|
||||||
int? birth;
|
int? birth;
|
||||||
|
|
||||||
/// 邮箱
|
/// 邮箱
|
||||||
@ -310,7 +305,6 @@ class FriendInfo {
|
|||||||
this.gender,
|
this.gender,
|
||||||
this.phoneNumber,
|
this.phoneNumber,
|
||||||
this.birth,
|
this.birth,
|
||||||
this.birthTime,
|
|
||||||
this.email,
|
this.email,
|
||||||
this.remark,
|
this.remark,
|
||||||
this.ex,
|
this.ex,
|
||||||
@ -331,7 +325,6 @@ class FriendInfo {
|
|||||||
gender = json['gender'];
|
gender = json['gender'];
|
||||||
phoneNumber = json['phoneNumber'];
|
phoneNumber = json['phoneNumber'];
|
||||||
birth = json['birth'];
|
birth = json['birth'];
|
||||||
birthTime = json['birthTime'];
|
|
||||||
email = json['email'];
|
email = json['email'];
|
||||||
ex = json['ex'];
|
ex = json['ex'];
|
||||||
}
|
}
|
||||||
@ -349,7 +342,6 @@ class FriendInfo {
|
|||||||
data['gender'] = this.gender;
|
data['gender'] = this.gender;
|
||||||
data['phoneNumber'] = this.phoneNumber;
|
data['phoneNumber'] = this.phoneNumber;
|
||||||
data['birth'] = this.birth;
|
data['birth'] = this.birth;
|
||||||
data['birthTime'] = this.birthTime;
|
|
||||||
data['email'] = this.email;
|
data['email'] = this.email;
|
||||||
data['ex'] = this.ex;
|
data['ex'] = this.ex;
|
||||||
return data;
|
return data;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user