authTokenType property

String authTokenType

Implementation

String get authTokenType {
  switch (this.tokenType) {
    case 'bearer':
      return 'Bearer';
    default:
      return 'Basic';
  }
}