greaterThanOrEqualTo method

Builder greaterThanOrEqualTo(
  1. Builder other, {
  2. bool reverse = false,
})

Returns the greater than or equal to of this and other.

this >= other

When reverse is true, the result will be:

this <= other

Implementation

Builder greaterThanOrEqualTo(
  Builder other, {
  bool reverse = false,
}) {
  return builder.greaterThanOrEqualTo(this, other, reverse: reverse);
}