ResponsiveLayout constructor

const ResponsiveLayout({
  1. Key? key,
  2. required Widget mobileLayout,
  3. Widget? tabletLayout,
  4. Widget? desktopLayout,
})

Implementation

const ResponsiveLayout({
  super.key,
  required this.mobileLayout,
  this.tabletLayout,
  this.desktopLayout,
});