copyWith method
Implementation
CustomFieldReplacement copyWith({int? customFieldId, int? moveTo}) {
return CustomFieldReplacement(
customFieldId: customFieldId ?? this.customFieldId,
moveTo: moveTo ?? this.moveTo,
);
}
CustomFieldReplacement copyWith({int? customFieldId, int? moveTo}) {
return CustomFieldReplacement(
customFieldId: customFieldId ?? this.customFieldId,
moveTo: moveTo ?? this.moveTo,
);
}