copyWithWrapped method

FwStandardSqlServerFwJsonDataTableColumn copyWithWrapped({
  1. Wrapped<String?>? name,
  2. Wrapped<String?>? dataField,
  3. Wrapped<FwStandardSqlServerFwDataTypes?>? dataType,
  4. Wrapped<bool?>? isUniqueId,
  5. Wrapped<bool?>? isVisible,
})

Implementation

FwStandardSqlServerFwJsonDataTableColumn copyWithWrapped(
    {Wrapped<String?>? name,
    Wrapped<String?>? dataField,
    Wrapped<enums.FwStandardSqlServerFwDataTypes?>? dataType,
    Wrapped<bool?>? isUniqueId,
    Wrapped<bool?>? isVisible}) {
  return FwStandardSqlServerFwJsonDataTableColumn(
      name: (name != null ? name.value : this.name),
      dataField: (dataField != null ? dataField.value : this.dataField),
      dataType: (dataType != null ? dataType.value : this.dataType),
      isUniqueId: (isUniqueId != null ? isUniqueId.value : this.isUniqueId),
      isVisible: (isVisible != null ? isVisible.value : this.isVisible));
}