Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
public class User
{
public String fullname;
public String username;
public User() {
}
public User(String fullname, String username) {
this.fullname = fullname;
this.username = username;
}
public String getFullname() {
return fullname;
}
public String getUsername() {
return username;
}
public static List<User> USERS = Arrays.asList(
new User("Priya Jain", "priya_98"),
new User("Manoj Patel","manoj_34"),
new User("Akbari Mayur", "mayur897"),
new User("Tushar Khabri", "khbri90")
);
}