copyWithWrapped method

ConversationConfigOverrideConfig copyWithWrapped({
  1. Wrapped<bool?>? textOnly,
})

Implementation

ConversationConfigOverrideConfig copyWithWrapped({Wrapped<bool?>? textOnly}) {
  return ConversationConfigOverrideConfig(
      textOnly: (textOnly != null ? textOnly.value : this.textOnly));
}