CallHistoryItemStyle constructor

const CallHistoryItemStyle({
  1. Size profileImageSize = const Size(48, 48),
  2. TextStyle titleTextStyle = const TextStyle(fontWeight: FontWeight.w600, color: Color(0xff181818), fontSize: 14),
  3. TextStyle subtitleTextStyle = const TextStyle(fontWeight: FontWeight.normal, color: Color(0xff767676), fontSize: 12),
  4. TextStyle durationTextStyle = const TextStyle(fontWeight: FontWeight.w300, color: Color(0xff767676), fontSize: 12),
  5. Color iconColor = Colors.grey,
  6. Color selectedBgColor = Colors.black12,
  7. Color unselectedBgColor = Colors.transparent,
  8. 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),
});