copyWithWrapped method

ConversationConfigOverride copyWithWrapped({
  1. Wrapped? textOnly,
})

Implementation

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