Checks whether the column value lies BETWEEN from and to.
from
to
T between(String from, String to) { final String filterValue = "$from AND $to"; return _createFilter(filterValue, "BETWEEN"); }