greaterThanEqual static method

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

Filter resources where attribute is greater than or equal to value.

Implementation

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