TitledLabel constructor

const TitledLabel({
  1. required String title,
  2. String? text,
  3. Widget? content,
  4. Key? key,
})

Implementation

const TitledLabel({
  required this.title,
  this.text,
  this.content,
  super.key,
});