copyWith method

EstimationFieldBean copyWith({
  1. String? fieldId,
  2. String? displayName,
})

Implementation

EstimationFieldBean copyWith({String? fieldId, String? displayName}) {
  return EstimationFieldBean(
    fieldId: fieldId ?? this.fieldId,
    displayName: displayName ?? this.displayName,
  );
}