BreakpointValue<T> constructor

BreakpointValue<T>({
  1. T? phone,
  2. T? tablet,
  3. T? computer,
})

Constructor that assigns values to be used depending on the device type.

Implementation

BreakpointValue({this.phone, this.tablet, this.computer});