Condition<T>.smallerThan constructor

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

Implementation

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