Condition<T> constructor

const Condition<T>({
  1. Conditional conditional = Conditional.EQUALS,
  2. T? mobile,
  3. T? tablet,
  4. T? desktop,
})

Implementation

const Condition({
  this.conditional = Conditional.EQUALS,
  T? mobile,
  T? tablet,
  T? desktop,
}) : super(mobile: mobile, tablet: tablet, desktop: desktop);