bio static method

String bio()

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.';
}