MCPcopy Create free account
hub / github.com/Raj-m01/Android-Chat-App / UserModel

Method UserModel

app/src/main/java/models/UserModel.java:10–17  ·  view source on GitHub ↗
(String profilePic, String userName, String userMail, String userId, String userPassword, String about)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected