authRealm property

String authRealm

Returns the realm that needs to be used for Authentication

Implementation

String get authRealm {
  switch (this) {
    case ActiveGridEnvironment.alpha:
    case ActiveGridEnvironment.beta:
      return 'activegrid-test';
    case ActiveGridEnvironment.production:
      return 'activegrid';
  }
}