LazyColumn constructor

const LazyColumn({
  1. Key? key,
  2. Widget? title,
  3. required List<Widget> children,
  4. ImageProvider<Object>? backgroundImage,
  5. bool showGradient = true,
})

Implementation

const LazyColumn({
  Key? key,
  this.title,
  required this.children,
  this.backgroundImage,
  this.showGradient = true,
}) : super(key: key);