CommonCardTitle constructor

const CommonCardTitle({
  1. Key? key,
  2. required String title,
  3. String? accessoryText,
  4. Widget? accessoryWidget,
  5. VoidCallback? onTap,
  6. Widget? subTitleWidget,
  7. String? detailTextString,
  8. Color? detailColor,
  9. PlaceholderAlignment? alignment,
  10. EdgeInsetsGeometry? padding,
  11. int? titleMaxLines,
  12. TextOverflow titleOverflow = TextOverflow.clip,
  13. CardTitleConfig? themeData,
})

create BrnCommonCardTitle

Implementation

const CommonCardTitle(
    {Key? key,
    required this.title,
    this.accessoryText,
    this.accessoryWidget,
    this.onTap,
    this.subTitleWidget,
    this.detailTextString,
    this.detailColor,
    this.alignment,
    this.padding,
    this.titleMaxLines,
    this.titleOverflow = TextOverflow.clip,
    this.themeData})
    : super(key: key);