BreakpointValue<T> constructor

const BreakpointValue<T>({
  1. required T xs,
  2. T? sm,
  3. T? md,
  4. T? lg,
  5. T? xl,
})

Implementation

const BreakpointValue({
  required this.xs,
  this.sm,
  this.md,
  this.lg,
  this.xl,
});