ChatPage constructor

const ChatPage({
  1. Key? key,
  2. required Room room,
  3. bool showAppBar = true,
})

Implementation

const ChatPage({
  Key? key,
  required this.room,
  this.showAppBar = true,
}) : super(key: key);