bio static method
Generate a random user bio
Implementation
static String bio() {
final hobby1 = hobbies[_random.nextInt(hobbies.length)];
final hobby2 = hobbies[_random.nextInt(hobbies.length)];
return 'Loves $hobby1 and $hobby2.';
}
Generate a random user bio
static String bio() {
final hobby1 = hobbies[_random.nextInt(hobbies.length)];
final hobby2 = hobbies[_random.nextInt(hobbies.length)];
return 'Loves $hobby1 and $hobby2.';
}