SqlBuilder.raw constructor
Named constructor for the SqlBuilder class that accepts a raw SQL query.
This constructor initializes an SqlBuilder instance with a raw SQL query.
The rawSql parameter is required and it should contain the raw SQL query string.
Usage:
var builder = SqlBuilder.raw(rawSql: 'SELECT * FROM table');
Implementation
SqlBuilder.raw({@required required String rawSql}) {
_rawSql = rawSql;
}