toSelectiveAuth method

SelectiveAuth toSelectiveAuth()

Implementation

SelectiveAuth toSelectiveAuth() {
  switch (this) {
    case 'Enabled':
      return SelectiveAuth.enabled;
    case 'Disabled':
      return SelectiveAuth.disabled;
  }
  throw Exception('$this is not known in enum SelectiveAuth');
}