QuoteText constructor

const QuoteText({
  1. Key? key,
  2. String quoteSysbol = '"',
  3. String? text,
  4. String? suffixText,
  5. bool isShowQuote = true,
  6. required TextStyle textStyle,
  7. required TextStyle supportStyle,
  8. required TextStyle quoteStyle,
})

Implementation

const QuoteText(
    {super.key,
    this.quoteSysbol = '"',
    this.text,
    this.suffixText,
    this.isShowQuote = true,
    required this.textStyle,
    required this.supportStyle,
    required this.quoteStyle});