boolean method

  1. @protected
ColumnBuilder<bool> boolean()

Use this as the body of a getter to declare a column that holds bools. Example (inside the body of a table class):

BoolColumn get isAwesome => boolean()();

Implementation

@protected
ColumnBuilder<bool> boolean() => _isGenerated();