DashboardView constructor

const DashboardView({
  1. Key? key,
  2. String? title,
  3. bool enableAppBar = true,
  4. bool showBackIcon = true,
  5. bool showSearchMenu = true,
  6. bool showCreateGroup = true,
  7. bool showSettings = true,
  8. bool showNewChat = true,
  9. bool showChatDeliveryIndicator = true,
  10. int chatLimit = 20,
  11. ResumeCallback? onFocusGain,
})

Implementation

const DashboardView(
    {super.key,
    this.title,
    this.enableAppBar = true,
    this.showBackIcon = true,
    this.showSearchMenu = true,
    this.showCreateGroup = true,
    this.showSettings = true,
    this.showNewChat = true,
    this.showChatDeliveryIndicator = true,
    this.chatLimit = 20,
    this.onFocusGain});