email static method

String email()

Generate a random email. The user section is based off a random name and the domain is a common adjective of the english language.

Implementation

static String email() {
  return name().toLowerCase().replaceFirst(RegExp(r' '), '_') + '@' +
      words.adjectives[random.nextInt(adjectives)] + '.com';
}