ListCard constructor

const ListCard({
  1. String? header,
  2. required List<Component> children,
  3. double? radius,
  4. bool divided = true,
  5. Key? key,
})

Implementation

const ListCard({
  this.header,
  required this.children,
  this.radius,
  this.divided = true,
  super.key,
});