InfoListItem.whiteWave constructor
Creates an InfoListItem with white70 background,'Merienda', fontFamily and blue, black, green text color for title, subTitle and footer texts, respectively.
Implementation
InfoListItem.whiteWave({
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',
}) : this(
icon: icon,
titleText: titleText,
subTitleText: subTitleText,
footerText: footerText,
// Pre-configured.
holderColor: Colors.white70,
titleFontFamily: 'Merienda',
subTitleFontFamily: 'Merienda',
footerFontFamily: 'Merienda',
titleTextColor: Colors.blue,
subTitleTextColor: Colors.black,
footerTextColor: Colors.green,
);