ChatStrings constructor

const ChatStrings({
  1. Key? key,
  2. required Widget child,
  3. String send = 'Send',
  4. String stop = 'Stop',
  5. String promptHint(
    1. String agentName
    ) = _defaultHint,
})

Implementation

const ChatStrings({
  super.key,
  required super.child,
  this.send = 'Send',
  this.stop = 'Stop',
  this.promptHint = _defaultHint,
});