copyWith method
Implementation
TD copyWith({
Widget? child,
Color? color,
EdgeInsets? padding,
TRStyle? style,
}) =>
TD(
child ?? this.child,
color: color ?? this.color,
padding: padding ?? this.padding,
style: style ?? this.style,
);