apiDomain property
String
get
apiDomain
Implementation
String get apiDomain {
switch (this) {
case PMEEnvironment.localhostPME:
return '"http://localhost:12345';
case PMEEnvironment.developPME:
return 'https://ads.dev.admaptech.info';
case PMEEnvironment.stagingPME:
return 'https://mbp.admaptech.info';
case PMEEnvironment.productionPME:
return 'https://mbp.mapbox-lab.com';
}
}