Merge branch 'dev' into happi/dev/database-update
# Conflicts: # apps/im_app/lib/data/models/user_dto.dart # apps/im_app/lib/data/remote/login_request.dart # apps/im_app/lib/features/chat/presentation/chat_db_test_view_model.dart # apps/im_app/lib/features/chat/view/chat_db_test_page.dart # apps/im_app/lib/features/login/presentation/login_view_model.dart
This commit is contained in:
@@ -64,4 +64,4 @@ class CallLog {
|
||||
isRead: isRead ?? this.isRead,
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -197,4 +197,4 @@ class Chat {
|
||||
localPermission: localPermission ?? this.localPermission,
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -97,4 +97,4 @@ class ChatBot {
|
||||
tips: tips ?? this.tips,
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -45,4 +45,4 @@ class ChatCategory {
|
||||
deletedAt: deletedAt ?? this.deletedAt,
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -109,4 +109,4 @@ class DiscoverMiniApp {
|
||||
screen: screen ?? this.screen,
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -109,4 +109,4 @@ class ExploreMiniApp {
|
||||
screen: screen ?? this.screen,
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -109,4 +109,4 @@ class FavoriteMiniApp {
|
||||
screen: screen ?? this.screen,
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -69,4 +69,4 @@ class Favourite {
|
||||
urls: urls ?? this.urls,
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -41,4 +41,4 @@ class FavouriteDetail {
|
||||
sendTime: sendTime ?? this.sendTime,
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -121,4 +121,4 @@ class Group {
|
||||
rp: rp ?? this.rp,
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -73,4 +73,4 @@ class Message {
|
||||
cmid: cmid ?? this.cmid,
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -33,4 +33,4 @@ class PendingFriendRequestHistory {
|
||||
rs: rs ?? this.rs,
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -109,4 +109,4 @@ class RecentMiniApp {
|
||||
screen: screen ?? this.screen,
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -57,4 +57,4 @@ class Retry {
|
||||
addIndex: addIndex ?? this.addIndex,
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -45,4 +45,4 @@ class Sound {
|
||||
isDefault: isDefault ?? this.isDefault,
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -37,4 +37,4 @@ class Tag {
|
||||
addIndex: addIndex ?? this.addIndex,
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -4,21 +4,13 @@ class UserRequestHistory {
|
||||
final int? status;
|
||||
final int? createdAt;
|
||||
|
||||
const UserRequestHistory({
|
||||
required this.id,
|
||||
this.status,
|
||||
this.createdAt,
|
||||
});
|
||||
const UserRequestHistory({required this.id, this.status, this.createdAt});
|
||||
|
||||
UserRequestHistory copyWith({
|
||||
int? id,
|
||||
int? status,
|
||||
int? createdAt,
|
||||
}) {
|
||||
UserRequestHistory copyWith({int? id, int? status, int? createdAt}) {
|
||||
return UserRequestHistory(
|
||||
id: id ?? this.id,
|
||||
status: status ?? this.status,
|
||||
createdAt: createdAt ?? this.createdAt,
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -61,4 +61,4 @@ class Workspace {
|
||||
channelGroupId: channelGroupId ?? this.channelGroupId,
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user