toFeatureType method
Implementation
FeatureType toFeatureType() {
switch (this) {
case 'TABLES':
return FeatureType.tables;
case 'FORMS':
return FeatureType.forms;
}
throw Exception('$this is not known in enum FeatureType');
}