baseUrl property
String
get
baseUrl
Get the base URL for the current environment
Implementation
static String get baseUrl {
switch (_environment) {
case Environment.dev:
return 'https://dev.remit2any.com';
case Environment.prod:
return 'https://remit2any.com';
}
}