InfoListItem.whitePro constructor
Creates an InfoListItem with white70 background color, blue titleText color, black subTitleText color, and green footerTextColor.
Implementation
InfoListItem.whitePro({
Icon icon = const Icon(Icons.broken_image, size: 32.0, color: Colors.green),
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.white70,
titleTextColor: Colors.blue,
subTitleTextColor: Colors.black,
footerTextColor: Colors.green,
);