baseUrl property
String
get
baseUrl
获取当前环境的 baseUrl
Implementation
static String get baseUrl {
switch (currentEnvironment) {
case Environment.production:
return 'https://aishop.vertu.cn';
case Environment.testing:
case Environment.development:
return 'http://vhost.jeele.cn';
}
}