LabelAndText constructor

const LabelAndText(
  1. BuildContext context, {
  2. Key? key,
  3. required String label,
  4. required String text,
  5. TextStyle? textStyle,
  6. bool copyable = false,
})

Implementation

const LabelAndText(
  BuildContext context, {
  super.key,
  required this.label,
  required this.text,
  this.textStyle,
  this.copyable = false,
});