copyWith method

Implementation

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