toSourceAuthType method

SourceAuthType toSourceAuthType()

Implementation

SourceAuthType toSourceAuthType() {
  switch (this) {
    case 'OAUTH':
      return SourceAuthType.oauth;
  }
  throw Exception('$this is not known in enum SourceAuthType');
}