lt method

KeyBuilder<T> lt(
  1. T value
)

$lt 小于

Implementation

KeyBuilder<T> lt(T value) {
  if (value is DateTime) {
    _json['\$lt'] = BmobDateTime(value).toJson();
  } else {
    _json['\$lt'] = value;
  }
  return this;
}