ResponsiveValue<ValueType> constructor

const ResponsiveValue<ValueType>({
  1. required ValueType s,
  2. ValueType? xs,
  3. ValueType? xxs,
  4. ValueType? m,
  5. ValueType? xm,
  6. ValueType? l,
  7. ValueType? xl,
  8. ValueType? xxl,
  9. ValueType? h,
})

Implementation

const ResponsiveValue({
  required this.s,
  this.xs,
  this.xxs,
  this.m,
  this.xm,
  this.l,
  this.xl,
  this.xxl,
  this.h,
});