copyWith method
FwStandardBusinessLogicFwBusinessLogicFieldDefinition
copyWith({
- String? name,
- FwStandardSqlServerFwDataTypes? dataType,
Implementation
FwStandardBusinessLogicFwBusinessLogicFieldDefinition copyWith(
{String? name, enums.FwStandardSqlServerFwDataTypes? dataType}) {
return FwStandardBusinessLogicFwBusinessLogicFieldDefinition(
name: name ?? this.name, dataType: dataType ?? this.dataType);
}