LowerBound<T> constructor

const LowerBound<T>({
  1. T? value,
  2. BoundType type = BoundType.inclusive,
})

Implementation

const LowerBound({T? value, BoundType type = BoundType.inclusive})
    : super(value: value, type: type);