ConditionScreen<T> constructor

const ConditionScreen<T>({
  1. T? mobile,
  2. T? tablet,
  3. T? desktop,
})

Implementation

const ConditionScreen({
  T? mobile,
  T? tablet,
  T? desktop,
})  : assert(mobile != null || tablet != null || desktop != null),
      super(mobile: mobile, tablet: tablet, desktop: desktop);