TdCell constructor

const TdCell({
  1. Key? key,
  2. GestureTapCallback? onTap,
  3. Widget? leading,
  4. Widget? badge,
  5. required Widget child,
})

Implementation

const TdCell({
  super.key,
  this.onTap,
  this.leading,
  this.badge,
  required this.child,
});