ViewColumn constructor

ViewColumn(
  1. Column innerColumn,
  2. ResolvedType? type, [
  3. String? _name
])

Creates a view column wrapping a Column from the select statement used to create the view.

The optional name parameter can be used to override the name for this column. By default, the name of the innerColumn will be used.

Implementation

ViewColumn(this.innerColumn, this.type, [this._name]);