build method
Build the SelectStatement
Implementation
SelectStatement build() => SelectStatement(
from,
_selectedColumns,
where: _whereClauseBuilder.build(),
orderBy: _orderByBuilder.build(),
joins: _joinBuilder.build(),
);