TButton constructor
const
TButton({
- Key? key,
- required String caption,
- VoidCallback? onClick,
- bool enabled = true,
- bool isDefault = false,
Implementation
const TButton({
super.key,
required this.caption,
this.onClick,
this.enabled = true,
this.isDefault = false,
});