InnerListView constructor

const InnerListView({
  1. Key? key,
  2. EdgeInsetsGeometry? padding,
  3. Axis? scrollDirection,
  4. required List<Widget> children,
})

Implementation

const InnerListView({
  super.key,
  this.padding,
  this.scrollDirection,
  required this.children,
});