AdaptiveData constructor

const AdaptiveData({
  1. Key? key,
  2. required AdaptiveBreakpoints breakpoints,
  3. required DesignSize designSize,
  4. required ScreenSizeBreakpoints screenSizeBreakpoints,
  5. required Widget child,
})

Creates adaptive data with the given configuration.

Implementation

const AdaptiveData({
  super.key,
  required this.breakpoints,
  required this.designSize,
  required this.screenSizeBreakpoints,
  required super.child,
});