refreshTokenEndpoint static method
Implementation
static String refreshTokenEndpoint(AppConfig context) {
switch (context.environment) {
case AppEnvironment.PROD:
return kProdRefreshTokenEndpoint;
case AppEnvironment.DEMO:
return kDemoRefreshTokenEndpoint;
case AppEnvironment.E2E:
return ke2eRefreshTokenEndpoint;
default:
return kTestRefreshTokenEndpoint;
}
}