greaterThanOrEqual method

Where greaterThanOrEqual(
  1. dynamic value
)

Implementation

Where greaterThanOrEqual(value) {
  this.value = value;
  this.operator = '>=';

  return this;
}