endsWith static method

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

Filter resources where attribute ends with value.

Implementation

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