ResponsiveLayout constructor

const ResponsiveLayout({
  1. Key? key,
  2. Widget? mobileBody,
  3. Widget? tabletBody,
  4. Widget? desktopBody,
})

Implementation

const ResponsiveLayout({
  super.key,
  this.mobileBody,
  this.tabletBody,
  this.desktopBody,
});