copyWith method
Implementation
OperationCheckResult copyWith(
{OperationCheckResultOperation? operation, String? targetType}) {
return OperationCheckResult(
operation: operation ?? this.operation,
targetType: targetType ?? this.targetType,
);
}