ViewColumn constructor
ViewColumn(
- Column innerColumn,
- ResolvedType? type, [
- 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]);