copyWithWrapped method

ConvAIDynamicVariable copyWithWrapped({
  1. Wrapped<String>? variableName,
})

Implementation

ConvAIDynamicVariable copyWithWrapped({Wrapped<String>? variableName}) {
  return ConvAIDynamicVariable(
      variableName:
          (variableName != null ? variableName.value : this.variableName));
}