CallHistoryItemStyle constructor
const
CallHistoryItemStyle({
- Size profileImageSize = const Size(48, 48),
- TextStyle titleTextStyle = const TextStyle(fontWeight: FontWeight.w600, color: Color(0xff181818), fontSize: 14),
- TextStyle subtitleTextStyle = const TextStyle(fontWeight: FontWeight.normal, color: Color(0xff767676), fontSize: 12),
- TextStyle durationTextStyle = const TextStyle(fontWeight: FontWeight.w300, color: Color(0xff767676), fontSize: 12),
- Color iconColor = Colors.grey,
- Color selectedBgColor = Colors.black12,
- Color unselectedBgColor = Colors.transparent,
- Color dividerColor = const Color(0XffE2E2E2),
Implementation
const CallHistoryItemStyle({
this.profileImageSize = const Size(48, 48),
this.titleTextStyle = const TextStyle(
fontWeight: FontWeight.w600, color: Color(0xff181818), fontSize: 14),
this.subtitleTextStyle = const TextStyle(
fontWeight: FontWeight.normal, color: Color(0xff767676), fontSize: 12),
this.durationTextStyle = const TextStyle(
fontWeight: FontWeight.w300, color: Color(0xff767676), fontSize: 12),
this.iconColor = Colors.grey,
this.selectedBgColor = Colors.black12,
this.unselectedBgColor = Colors.transparent,
this.dividerColor = const Color(0XffE2E2E2),
});