QField constructor

QField(
  1. String field, {
  2. String as = '',
  3. bool distinct = false,
})

Creates a database field with optional alias.

field The field name (can include table.field notation). as Optional alias for the field.

Implementation

QField(String super.field, {this.as = '', this.distinct = false});