ChatScreen constructor

const ChatScreen({
  1. Key? key,
  2. String name = "",
  3. String phone = "",
  4. String email = "",
})

Implementation

const ChatScreen({
  Key? key,
  this.name = "",
  this.phone = "",
  this.email = "",
}) : super(key: key);