cognitoClientId property

String get cognitoClientId

Get the Cognito client ID for the current environment

Implementation

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