ResponsiveValue<T> constructor

const ResponsiveValue<T>({
  1. required T phone,
  2. T? tablet,
  3. T? desktop,
})

Implementation

const ResponsiveValue({
  required this.phone,
  this.tablet,
  this.desktop,
});