copyWithCompanion method
- ChatMembersCompanion data
Implementation
ChatMemberRow copyWithCompanion(ChatMembersCompanion data) {
return ChatMemberRow(
userId: data.userId.present ? data.userId.value : this.userId,
chatId: data.chatId.present ? data.chatId.value : this.chatId,
joinedAt: data.joinedAt.present ? data.joinedAt.value : this.joinedAt,
cursor: data.cursor.present ? data.cursor.value : this.cursor,
);
}