startsWith static method

String startsWith(
  1. String attribute,
  2. String value
)

Filter resources where attribute starts with value.

Implementation

static String startsWith(String attribute, String value) =>
    Query._('startsWith', attribute, value).toString();