TD constructor

const TD(
  1. Widget child, {
  2. Key? key,
  3. EdgeInsets padding = const EdgeInsets.all(8.0),
  4. Color? color,
  5. TRStyle style = TRStyle.normal,
})

Implementation

const TD(this.child,
    {super.key,
    this.padding = const EdgeInsets.all(8.0),
    this.color,
    this.style = TRStyle.normal});