ResponsiveValue<T> constructor

const ResponsiveValue<T>({
  1. T? extraSmall,
  2. T? small,
  3. T? medium,
  4. T? large,
  5. required T defaultValue,
})

Creates a ResponsiveValue.

Implementation

const ResponsiveValue({
  this.extraSmall,
  this.small,
  this.medium,
  this.large,
  required this.defaultValue,
});