ChatScreen constructor

const ChatScreen({
  1. Key? key,
  2. String? topicId,
  3. required String mode,
  4. String? topicTitle,
  5. String? from,
  6. bool isValidation = false,
  7. String? validationTarget,
})

Implementation

const ChatScreen({
  super.key,
  this.topicId,
  required this.mode,
  this.topicTitle,
  this.from,
  this.isValidation = false,
  this.validationTarget,
});