authUrl property

String get authUrl

Get the authentication URL for the current environment

Implementation

static String get authUrl {
  switch (_environment) {
    case Environment.dev:
      return _devUrl;
    case Environment.prod:
      return _prodUrl;
  }
}