text method
Use this as the body of a getter to declare a column that holds strings. Example (inside the body of a table class):
TextColumn get name => text()();
Implementation
@protected
ColumnBuilder<String> text() => _isGenerated();
Use this as the body of a getter to declare a column that holds strings. Example (inside the body of a table class):
TextColumn get name => text()();
@protected
ColumnBuilder<String> text() => _isGenerated();