TGroupBox constructor

const TGroupBox({
  1. Key? key,
  2. required String caption,
  3. Widget? child,
  4. bool enabled = true,
})

Implementation

const TGroupBox({
  super.key,
  required this.caption,
  this.child,
  this.enabled = true,
});