configBaseHostWithEnv method Null safety
- String url,
- SMHHostType type
Implementation
void configBaseHostWithEnv(String url, SMHHostType type) {
switch (type) {
case SMHHostType.dev:
_devBaseUrl = url;
break;
case SMHHostType.test:
_testBaseUrl = url;
break;
case SMHHostType.preview:
_previewBaseUrl = url;
break;
case SMHHostType.release:
_releaseBaseUrl = url;
break;
}
}