PhoenixListview constructor

const PhoenixListview({
  1. Key? key,
  2. required Widget title,
  3. required List<Widget> contents,
  4. double? seperatorSpace,
  5. Color? seperatorColor,
  6. Color? outlineBoxContentsColor,
  7. Color? boxContentsColor,
  8. dynamic callback(
    1. int index
    )?,
  9. Widget? action,
  10. Radius? radiusContentsBox,
})

Implementation

const PhoenixListview({
  Key? key,
  required this.title,
  required this.contents,
  this.seperatorSpace,
  this.seperatorColor,
  this.outlineBoxContentsColor,
  this.boxContentsColor,
  this.callback,
  this.action,
  this.radiusContentsBox,
}) : super(key: key);