ScrollableColumn constructor

const ScrollableColumn({
  1. Key? key,
  2. int? height,
  3. required List<Widget> children,
})

Implementation

const ScrollableColumn({
  super.key,
  this.height,
  required this.children,
});