TdSection constructor

const TdSection({
  1. Key? key,
  2. Widget? header,
  3. Widget? footer,
  4. required List<Widget> children,
})

Implementation

const TdSection({
  super.key,
  this.header,
  this.footer,
  required this.children,
});