randomURL static method
Generate a random URL (example.com).
Implementation
static String randomURL() {
final random = Random();
const domains = ['com', 'org', 'net', 'io', 'co', 'edu'];
final domain = domains[random.nextInt(domains.length)];
return 'https://www.mockify.$domain';
}