toColumnDataType method
Implementation
ColumnDataType toColumnDataType() {
switch (this) {
case 'STRING':
return ColumnDataType.string;
case 'INTEGER':
return ColumnDataType.integer;
case 'DECIMAL':
return ColumnDataType.decimal;
case 'DATETIME':
return ColumnDataType.datetime;
}
throw Exception('$this is not known in enum ColumnDataType');
}