TextLabelPannel constructor

const TextLabelPannel({
  1. Key? key,
  2. required List<String> textList,
  3. required String preforText,
  4. required dynamic onSelectLabel(
    1. String
    ),
  5. double fontSize = 14,
})

Implementation

const TextLabelPannel(
    {Key? key,
    required this.textList,
    required this.preforText,
    required this.onSelectLabel,
    this.fontSize = 14})
    : super(key: key);