(String profilePic, String userName, String userMail, String userId, String userPassword, String about)
| 8 | long recentMsgTime; |
| 9 | |
| 10 | public UserModel(String profilePic, String userName, String userMail, String userId, String userPassword, String about) { |
| 11 | this.profilePic = profilePic; |
| 12 | this.userName = userName; |
| 13 | this.userMail = userMail; |
| 14 | this.userId = userId; |
| 15 | this.userPassword = userPassword; |
| 16 | this.about = about; |
| 17 | } |
| 18 | |
| 19 | |
| 20 | // For storing in DB |
nothing calls this directly
no outgoing calls
no test coverage detected