ChatUserAppBarStyle constructor

const ChatUserAppBarStyle({
  1. Size profileImageSize = const Size(36, 36),
  2. TextStyle titleTextStyle = const TextStyle(fontWeight: FontWeight.w600, color: Color(0xff181818), fontSize: 16),
  3. TextStyle subtitleTextStyle = const TextStyle(fontWeight: FontWeight.w300, color: Color(0xff959595), fontSize: 10),
})

Implementation

const ChatUserAppBarStyle({
  this.profileImageSize = const Size(36, 36),
  this.titleTextStyle = const TextStyle(
      fontWeight: FontWeight.w600, color: Color(0xff181818), fontSize: 16),
  this.subtitleTextStyle = const TextStyle(
      fontWeight: FontWeight.w300, color: Color(0xff959595), fontSize: 10),
});