SdkModel constructor

SdkModel({
  1. String? token,
  2. String? title,
  3. String? aiName,
  4. String? primaryColor,
  5. String? secondaryColor,
  6. String? placeholderInput,
  7. bool? showAppBar,
  8. List<String>? listSuggestions,
  9. List<ListMessage>? listMessages,
})

Implementation

SdkModel({
  this.token,
  this.title,
  this.aiName,
  this.primaryColor,
  this.secondaryColor,
  this.placeholderInput,
  this.showAppBar,
  this.listSuggestions,
  this.listMessages,
});