between method

Where between(
  1. dynamic from,
  2. dynamic to
)

Implementation

Where between(dynamic from, dynamic to) {
  this.value = [from, to];
  this.operator = 'BETWEEN';

  return this;
}