companyName static method

String companyName()

Generate a random company name

Implementation

static String companyName() {
  return companies[_random.nextInt(companies.length)];
}