CardTitleConfig constructor

CardTitleConfig({
  1. BaseTextStyle? titleWithHeightTextStyle,
  2. BaseTextStyle? detailTextStyle,
  3. BaseTextStyle? accessoryTextStyle,
  4. EdgeInsets? cardTitlePadding,
  5. BaseTextStyle? titleTextStyle,
  6. BaseTextStyle? subtitleTextStyle,
  7. PlaceholderAlignment? alignment,
  8. Color? cardBackgroundColor,
  9. 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);