baseUrl property
Implementation
String get baseUrl {
switch (appFlavor) {
case Flavor.dev:
return 'https://api.dev.rehacul.com/app/api/v1/private/';
case Flavor.stg:
return 'https://3rpjf6pdeb.ap-northeast-1.awsapprunner.com/api/v1/private/';
case Flavor.prod:
return 'https://';
default:
return 'https://';
}
}