toReplicationScope method

ReplicationScope toReplicationScope()

Implementation

ReplicationScope toReplicationScope() {
  switch (this) {
    case 'Domain':
      return ReplicationScope.domain;
  }
  throw Exception('$this is not known in enum ReplicationScope');
}