between static method

String between(
  1. String attribute,
  2. dynamic start,
  3. dynamic end
)

Filter resources where attribute is between start and end (inclusive).

Implementation

static String between(String attribute, dynamic start, dynamic end) =>
    Query._('between', attribute, [start, end]).toString();