Avoid multiple arguments
// Do not DO this
void init(String apikey, int refresh, long interval, String type,
String username, String email, String password);
// WHY?
void init(“0123456789”,“prod”, 1000, 1, “nishant”, ”1234”,
“
[email protected]”);
// Passing arguments in right order is easy to mess up here :(
@nisrulz
#droidconDE