copyWithWrapped method
FwStandardBusinessLogicFwBusinessLogicFieldDefinition
copyWithWrapped({
- Wrapped<
String?> ? name, - Wrapped<
FwStandardSqlServerFwDataTypes?> ? dataType,
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));
}