ResponsiveListView constructor

const ResponsiveListView({
  1. Key? key,
  2. List<Widget>? children,
  3. List<Widget>? mobileChildren,
  4. List<Widget>? tabletChildren,
  5. List<Widget>? desktopChildren,
  6. EdgeInsetsGeometry? padding,
})

Implementation

const ResponsiveListView({
  super.key,
  this.children,
  this.mobileChildren,
  this.tabletChildren,
  this.desktopChildren,
  this.padding,
});