FCCResponsive constructor

const FCCResponsive({
  1. Key? key,
  2. required Widget child,
  3. FCCResponsiveBreakpoints breakpoints = const FCCResponsiveBreakpoints(),
})

Implementation

const FCCResponsive({
  super.key,
  required this.child,
  this.breakpoints = const FCCResponsiveBreakpoints(),
});