TDKDisplayContent constructor

const TDKDisplayContent({
  1. Key? key,
  2. required String text,
  3. required int maxLines,
  4. TextStyle? style,
  5. bool? expand,
  6. required Color labelColor,
})

Implementation

const TDKDisplayContent(
    {Key? key, required this.text, required this.maxLines, this.style, this.expand, required this.labelColor})
    : super(key: key);