integer method Null safety
Use this as the body of a getter to declare a column that holds integers. Example (inside the body of a table class):
IntColumn get id => integer().autoIncrement()();
Implementation
@protected
ColumnBuilder<int> integer() => _isGenerated();