ExpandableTextWidget constructor

const ExpandableTextWidget({
  1. Key? key,
  2. String? text,
  3. Widget? title,
  4. EdgeInsetsGeometry? margin,
  5. TextStyle? textStyle,
  6. Color? backgroundColor,
  7. Widget? downIcon,
  8. Widget? upIcon,
  9. ShapeBorder? shape,
  10. Widget? imageChild,
  11. double? elevation,
})

Implementation

const ExpandableTextWidget(
    {Key? key,
    this.text,
    this.title,
    this.margin,
    this.textStyle,
    this.backgroundColor,
    this.downIcon,
    this.upIcon,
    this.shape,
    this.imageChild,
    this.elevation})
    : assert(text != null && title != null),
      super(key: key);