CommonListViewLayout constructor

const CommonListViewLayout({
  1. Key? key,
  2. required List<Widget> children,
  3. double? spacing,
  4. bool isScrollable = true,
})

Implementation

const CommonListViewLayout({
  super.key,
  required this.children,
  this.spacing,
  this.isScrollable = true,
});