CardTitleConfig constructor
CardTitleConfig({
- BaseTextStyle? titleWithHeightTextStyle,
- BaseTextStyle? detailTextStyle,
- BaseTextStyle? accessoryTextStyle,
- EdgeInsets? cardTitlePadding,
- BaseTextStyle? titleTextStyle,
- BaseTextStyle? subtitleTextStyle,
- PlaceholderAlignment? alignment,
- Color? cardBackgroundColor,
- String configId = GLOBAL_CONFIG_ID,
Implementation
CardTitleConfig({
BaseTextStyle? titleWithHeightTextStyle,
BaseTextStyle? detailTextStyle,
BaseTextStyle? accessoryTextStyle,
EdgeInsets? cardTitlePadding,
BaseTextStyle? titleTextStyle,
BaseTextStyle? subtitleTextStyle,
PlaceholderAlignment? alignment,
Color? cardBackgroundColor,
String configId = GLOBAL_CONFIG_ID,
}) : _titleWithHeightTextStyle = titleWithHeightTextStyle,
_detailTextStyle = detailTextStyle,
_accessoryTextStyle = accessoryTextStyle,
_cardTitlePadding = cardTitlePadding,
_titleTextStyle = titleTextStyle,
_subtitleTextStyle = subtitleTextStyle,
_alignment = alignment,
_cardBackgroundColor = cardBackgroundColor,
super(configId: configId);