ChatScreen constructor

const ChatScreen({
  1. Key? key,
  2. VoidCallback? onClose,
  3. VoidCallback? onBackPressed,
  4. dynamic onPinnedStateChanged(
    1. bool
    )?,
  5. dynamic onRegisterClosePinnedCallback(
    1. VoidCallback
    )?,
})

Implementation

const ChatScreen({
  super.key,
  this.onClose,
  this.onBackPressed,
  this.onPinnedStateChanged,
  this.onRegisterClosePinnedCallback,
});