columnName property
String
get
columnName
Get the column name
Extracts the column name from the column definition.
Implementation
String get columnName {
final parts = _columnDefinition.trim().split(' ');
return parts[1]; // Skip the first part (usually empty due to leading space)
}