BaseExpandableText constructor

const BaseExpandableText(
  1. String text, {
  2. Key? key,
  3. int? maxLines = 1000000,
  4. TextStyle? style,
  5. ValueChanged<bool>? onExpanded,
  6. Color? color,
})

Implementation

const BaseExpandableText(this.text,
    {super.key,
    this.maxLines = 1000000,
    this.style,
    this.onExpanded,
    this.color});