toTargetDbType method
Implementation
TargetDbType toTargetDbType() {
switch (this) {
case 'specific-database':
return TargetDbType.specificDatabase;
case 'multiple-databases':
return TargetDbType.multipleDatabases;
}
throw Exception('$this is not known in enum TargetDbType');
}