InfoListItem.dark3d constructor

InfoListItem.dark3d({Icon icon: const Icon(Icons.broken_image, size: 32.0, color: Colors.white), String titleText: 'Never look back...', String subTitleText: 'you said, how was I to know, I love you so, Loniless up ahead, emptiness behind, where do I go, and you did\'t hear, all my...', String footerText: '15 December, 2019', String titleFontFamily, String subTitleFontFamily, String footerFontFamily })

Creates an InfoListItem with black background color, deepPurple titleText color, white subTitleText color, and deepPurple footerTextColor

Implementation

InfoListItem.dark3d({
  Icon icon = const Icon(Icons.broken_image, size: 32.0, color: Colors.white),
  String titleText = 'Never look back...',
  String subTitleText =
      'you said, how was I to know, I love you so, Loniless up ahead, emptiness behind, where do I go, and you did\'t hear, all my...',
  String footerText = '15 December, 2019',
  String titleFontFamily,
  String subTitleFontFamily,
  String footerFontFamily,
}) : this(
        icon: icon,
        titleText: titleText,
        subTitleText: subTitleText,
        footerText: footerText,
        titleFontFamily: titleFontFamily,
        subTitleFontFamily: subTitleFontFamily,
        footerFontFamily: footerFontFamily,

        // Pre-configured.
        holderColor: Colors.black,
        titleTextColor: Colors.deepPurple,
        subTitleTextColor: Colors.white,
        footerTextColor: Colors.deepPurple,
      );