CommsPage constructor

const CommsPage({
  1. Key? key,
  2. List<CommsGroup>? conversations,
  3. IconData? noDataIcon,
  4. List<Widget>? emptyWidget,
  5. dynamic onConversationSelected(
    1. CommsGroup conversation
    )?,
  6. int? currentUserId,
  7. bool? showBroadcast = false,
  8. String? broadcastTitle,
  9. IconData? broadcastIcon,
  10. Color? broadcastIconColor,
  11. VoidCallback? onBroadcastTap,
  12. Widget? broadcastWidget,
})

Implementation

const CommsPage({
  super.key,
  this.conversations,
  this.noDataIcon,
  this.emptyWidget,
  this.onConversationSelected,
  this.currentUserId,
  this.showBroadcast = false,
  this.broadcastTitle,
  this.broadcastIcon,
  this.broadcastIconColor,
  this.onBroadcastTap,
  this.broadcastWidget,
});