ArchivedChatsPageStyle constructor

const ArchivedChatsPageStyle({
  1. AppBarTheme appBarTheme = const AppBarTheme(backgroundColor: Colors.white, shadowColor: Colors.white, surfaceTintColor: Colors.white, titleTextStyle: TextStyle(fontWeight: FontWeight.bold, color: Color(0xff181818), fontSize: 20), elevation: 0, actionsIconTheme: IconThemeData(color: Color(0xff181818))),
  2. RecentChatItemStyle recentChatItemStyle = const RecentChatItemStyle(),
  3. TextStyle noDataTextStyle = const TextStyle(fontWeight: FontWeight.w600, color: Color(0xff181818), fontSize: 14),
})

Implementation

const ArchivedChatsPageStyle(
    {this.appBarTheme = const AppBarTheme(
        backgroundColor: Colors.white,
        shadowColor: Colors.white,
        surfaceTintColor: Colors.white,
        titleTextStyle: TextStyle(
            fontWeight: FontWeight.bold,
            color: Color(0xff181818),
            fontSize: 20),
        elevation: 0,
        actionsIconTheme: IconThemeData(color: Color(0xff181818))),
    this.recentChatItemStyle = const RecentChatItemStyle(),
    this.noDataTextStyle = const TextStyle(
        fontWeight: FontWeight.w600,
        color: Color(0xff181818),
        fontSize: 14)});