copyWith method
Implementation
ClientResponseResult copyWith({
Object? id = _acpCopyWithAbsent,
Object? result = _acpCopyWithAbsent,
}) => ClientResponseResult(
id: identical(id, _acpCopyWithAbsent) ? this.id : id as RequestId,
result: identical(result, _acpCopyWithAbsent)
? this.result
: result as Object,
);