Condition<T>.smallerThan constructor

const Condition<T>.smallerThan({
  1. int? breakpoint,
  2. String? name,
  3. T? value,
  4. T? landscapeValue,
})

Implementation

const Condition.smallerThan(
    {int? breakpoint, this.name, this.value, T? landscapeValue})
    : landscapeValue = (landscapeValue ?? value),
      breakpointStart = breakpoint,
      breakpointEnd = breakpoint,
      condition = Conditional.SMALLER_THAN;