notEqual static method

String notEqual(
  1. String attribute,
  2. dynamic value
)

Filter resources where attribute is not equal to value.

Implementation

static String notEqual(String attribute, dynamic value) =>
    Query._('notEqual', attribute, [value]).toString();