isDevEnvironment static method
Check if running in a development environment
Implementation
static bool isDevEnvironment() {
try {
final location = web.window.location;
return location.hostname == 'localhost' ||
location.hostname == '127.0.0.1' ||
location.protocol == 'file:';
} catch (_) {
return false;
}
}