SectionSeparator constructor

const SectionSeparator({
  1. Key? key,
  2. double height = 32,
  3. required String text,
  4. Color? dividerColor,
  5. TextStyle? textStyle,
})

Implementation

const SectionSeparator(
    {super.key,
    this.height = 32,
    required this.text,
    this.dividerColor,
    this.textStyle});