whereBetween method
Add WHERE column BETWEEN low AND high
Implementation
SqlBuilder whereBetween(String column, dynamic low, dynamic high) {
final l = low is String ? "'$low'" : low.toString();
final h = high is String ? "'$high'" : high.toString();
_conditions.add('$column BETWEEN $l AND $h');
return this;
}