StreamBackButton constructor

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

Constructor for creating back button

Implementation

const StreamBackButton({
  Key? key,
  this.onPressed,
  this.showUnreads = false,
  this.cid,
}) : super(key: key);