username method
Generate a random username.
Implementation
String username() {
final first = firstName().toLowerCase();
final num = randomInt(1, 999);
return '$first$num';
}
Generate a random username.
String username() {
final first = firstName().toLowerCase();
final num = randomInt(1, 999);
return '$first$num';
}