StarredMessageUserHeaderStyle constructor

const StarredMessageUserHeaderStyle({
  1. Size profileImageSize = const Size(48, 48),
  2. TextStyle profileNameStyle = const TextStyle(fontWeight: FontWeight.bold, color: Color(0xff181818), fontSize: 15),
  3. TextStyle dateTextStyle = const TextStyle(fontWeight: FontWeight.normal, color: Color(0xff959595), fontSize: 12),
})

Implementation

const StarredMessageUserHeaderStyle(
    {this.profileImageSize = const Size(48, 48),
    this.profileNameStyle = const TextStyle(
        fontWeight: FontWeight.bold, color: Color(0xff181818), fontSize: 15),
    this.dateTextStyle = const TextStyle(
      fontWeight: FontWeight.normal,
      color: Color(0xff959595),
      fontSize: 12,
    )});