rawValue property

String rawValue

The raw value used for interfacing with native SDKs.

Implementation

String get rawValue {
  switch (this) {
    case AuthModeStrategy.defaultStrategy:
      return 'default';
    case AuthModeStrategy.multiAuth:
      return 'multiauth';
  }
}