TdCellView constructor

const TdCellView({
  1. Key? key,
  2. EdgeInsetsGeometry? padding,
  3. GestureTapCallback? onTap,
  4. required Widget child,
})

Implementation

const TdCellView({
  super.key,
  this.padding,
  this.onTap,
  required this.child,
});