copyWithWrapped method

Implementation

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