StreamBackButton constructor

const StreamBackButton({
  1. Key? key,
  2. VoidCallback? onPressed,
  3. bool showUnreadCount = false,
  4. String? channelId,
})

A custom back button implementation

Implementation

const StreamBackButton({
  super.key,
  this.onPressed,
  this.showUnreadCount = false,
  this.channelId,
});